mirror of
https://github.com/ente-io/ente.git
synced 2025-05-24 20:19:17 +00:00
7 lines
205 B
TypeScript
7 lines
205 B
TypeScript
import { Box, styled } from "@mui/material";
|
|
|
|
export const DashedBorderWrapper = styled(Box)(({ theme }) => ({
|
|
border: `1px dashed ${theme.palette.grey.A400}`,
|
|
borderRadius: theme.spacing(1),
|
|
}));
|