import { getColors } from '@/themes/getColors'; import { Box } from '@mui/material'; import { SxProps, useTheme } from '@mui/material/styles'; type DotProps = { color?: string; size?: number; variant?: string; sx?: SxProps; }; function Dot({ color, size, variant, sx }: DotProps) { const theme = useTheme(); const colors = getColors(theme as any, color as any); const { main } = colors; return ( ); } export { Dot }; export type { DotProps };