DialogIcon.tsx 438 B

12345678910111213141516171819
  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. >
  15. {icon}
  16. </Box>
  17. );
  18. }