index.tsx 439 B

1234567891011121314151617
  1. import Alert from '@mui/material/Alert';
  2. import AlertTitle from '@mui/material/AlertTitle';
  3. import Stack from '@mui/material/Stack';
  4. const AlertInfo = ({ name }: { name: string }) => {
  5. return (
  6. <Stack sx={{ width: '100%' }} spacing={2}>
  7. <Alert severity="info">
  8. <AlertTitle>Warning</AlertTitle>
  9. <strong style={{wordBreak:'break-word'}}>{name}</strong>
  10. </Alert>
  11. </Stack>
  12. );
  13. }
  14. export default AlertInfo