import { Box } from "@mui/material"; import React from "react"; import { useResponsive } from "../theme/useResponsive"; interface DividerProps { marginTopDivider?: string | "1vw"; marginBottomDivider?: string | "1vw"; } function Divider({ marginTopDivider, marginBottomDivider }: DividerProps) { const { isMobile } = useResponsive(); return ( ); }; export default Divider;