diff options
Diffstat (limited to 'src/components/separator.tsx')
| -rw-r--r-- | src/components/separator.tsx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/components/separator.tsx b/src/components/separator.tsx new file mode 100644 index 0000000..445d4f4 --- /dev/null +++ b/src/components/separator.tsx @@ -0,0 +1,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; |
