You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SidebarHeader.styled.js 412B

12345678910111213
  1. import { Box } from "@mui/material";
  2. import { ReactComponent as LogoHorizontal } from "../../../../assets/images/svg/logo-horizontal.svg";
  3. import styled from "styled-components";
  4. export const SidebarHeaderContainer = styled(Box)`
  5. background-color: #f5edff;
  6. padding-top: 3.3vh;
  7. padding-left: 36px;
  8. padding-bottom: 3.3vh;
  9. `;
  10. export const LogoHorizontalIcon = styled(LogoHorizontal)`
  11. cursor: pointer;
  12. `;