import { Divider } from '@mui/material'; import React from 'react'; type SeparatorProps = { backgroundColor: string; margin: string; }; export default function Separator({ backgroundColor, margin }: SeparatorProps) { return ( ); }