/ src / components / primitives / Warning.tsx
Warning.tsx
 1  import { Alert, AlertProps } from '@mui/material';
 2  
 3  export const Warning = ({ children, sx, ...rest }: AlertProps) => {
 4    const styles = { mb: 6, alignItems: 'center', width: '100%', ...sx };
 5  
 6    return (
 7      <Alert sx={styles} {...rest}>
 8        {children}
 9      </Alert>
10    );
11  };