import { Box, SxProps, Theme } from "@mui/material"; interface Props { sx?: SxProps; } export default function CalendarIcon({ sx }: Props) { return ( ); }