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}; } `} `