import React from 'react'; import { Stack, Typography, Box } from '@mui/material'; const TitleCard = ({ sx, title, children, starticon }) => { return ( {starticon && starticon} {title} {children} ); }; export default TitleCard;