Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

IconButton.styled.js 445B

12345678910111213141516
  1. import { Box, IconButton } from "@mui/material";
  2. import styled from "styled-components";
  3. export const IconButtonContainer = styled(Box)`
  4. `
  5. export const IconButtonStyled = styled(IconButton)`
  6. height: ${props => props.height ? props.height : "36px"};
  7. width: ${props => props.width ? props.width : "36px"};
  8. padding: 0;
  9. ${props => props.iconColor && `
  10. & svg path {
  11. stroke: ${props.iconColor};
  12. }
  13. `}
  14. `