import type { PropsWithChildren } from 'react'; import { Card, CardContent, CardHeader, Typography } from '@mui/material'; import makeStyles from '@mui/styles/makeStyles'; // Pulse is one of the few components that does NOT have getPConnect. // So, no need to extend PConnProps interface PulseProps { // If any, enter additional props that only exist on this component } const useStyles = makeStyles(theme => ({ root: { marginTop: theme.spacing(1), marginBottom: theme.spacing(1), borderLeft: '6px solid', borderLeftColor: theme.palette.primary.light } })); export default function Pulse(props: PropsWithChildren) { // eslint-disable-next-line @typescript-eslint/no-unused-vars const { children } = props; const classes = useStyles(); return ( Pulse} /> Pulse ); }