import type { SxProps, Theme } from '@mui/material/styles'; import { Markdown } from 'src/components/markdown'; // ---------------------------------------------------------------------- type Props = { description?: string; sx?: SxProps; }; export function ProductDetailsDescription({ description, sx }: Props) { return ( ({ p: 3, '& p, li, ol, table': { typography: 'body2' }, '& table': { mt: 2, maxWidth: 640, '& td': { px: 2 }, '& td:first-of-type': { color: 'text.secondary' }, 'tbody tr:nth-of-type(odd)': { bgcolor: 'transparent' }, }, }), ...(Array.isArray(sx) ? sx : [sx]), ]} /> ); }