import { Box as MUIBox, BoxProps as MUIBoxProps } from '@mui/material'; import { FC } from 'react'; import { BLUE, GREY, PURPLE, RED, BORDER_RADIUS, } from '../lib/consts/DEFAULT_THEME'; export type Colours = 'ok' | 'off' | 'error' | 'warning'; type DecoratorProps = MUIBoxProps & { colour: Colours; }; const PREFIX = 'Decorator'; const classes = { ok: `${PREFIX}-ok`, warning: `${PREFIX}-warning`, error: `${PREFIX}-error`, off: `${PREFIX}-off`, }; const Decorator: FC = ({ colour, sx, ...restDecoratorProps }): JSX.Element => ( ); export default Decorator;