styledComponents.tsx 205 B

123456
  1. import { Box, styled } from "@mui/material";
  2. export const DashedBorderWrapper = styled(Box)(({ theme }) => ({
  3. border: `1px dashed ${theme.palette.grey.A400}`,
  4. borderRadius: theme.spacing(1),
  5. }));