import clsx from 'clsx'; import { CProps } from '@/components/props'; interface DividerProps extends CProps.Styling { vertical?: boolean; margins?: string; } function Divider({ vertical, margins = 'mx-2', className, ...restProps }: DividerProps) { return (
); } export default Divider;