Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
| 12345678910111213141516 |
- import { Box, IconButton } from "@mui/material";
- import styled from "styled-components";
-
- export const IconButtonContainer = styled(Box)`
- `
-
- export const IconButtonStyled = styled(IconButton)`
- height: ${props => props.height ? props.height : "36px"};
- width: ${props => props.width ? props.width : "36px"};
- padding: 0;
- ${props => props.iconColor && `
- & svg path {
- stroke: ${props.iconColor};
- }
- `}
- `
|