ConceptPortal-public/rsconcept/frontend/src/components/Common/Divider.tsx
2023-11-10 15:34:59 +03:00

13 lines
264 B
TypeScript

interface DividerProps {
vertical?: boolean
margins?: string
}
function Divider({ vertical, margins = 'mx-2' }: DividerProps) {
return (
<div className={`${margins} ${vertical ? 'border-x h-full': 'border-y w-full'}`} />
);
}
export default Divider;