DialogIcon.tsx 429 B

123456789101112131415161718
  1. import { Box } from '@mui/material';
  2. import React from 'react';
  3. export default function DialogIcon({ icon }: { icon: React.ReactNode }) {
  4. return (
  5. <Box
  6. className="DialogIcon"
  7. sx={{
  8. svg: {
  9. width: '48px',
  10. height: '48px',
  11. },
  12. color: 'stroke.muted',
  13. }}>
  14. {icon}
  15. </Box>
  16. );
  17. }