mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-01 03:16:29 +02:00
14 lines
312 B
TypeScript
14 lines
312 B
TypeScript
import clsx from 'clsx';
|
|
|
|
interface HorizontalDividerProps {
|
|
className?: string;
|
|
}
|
|
|
|
export function HorizontalDivider({ className }: HorizontalDividerProps) {
|
|
return (
|
|
<div className={clsx(
|
|
"border-t border-gray-200 dark:border-gray-700",
|
|
className
|
|
)} />
|
|
);
|
|
}
|