blob: 445d4f4ba866e4232d066d0e9b6dedf2dd9c5090 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { cn } from '@/lib/utils';
import { Section } from './section';
const Separator = ({ className }: { className?: string }) => (
<Section>
<div className={cn('h-8 bg-dashed', className)} />
</Section>
);
export default Separator;
|