Files
web/components/TempDesignSystem/Divider/index.tsx
2024-06-19 14:51:00 +02:00

14 lines
309 B
TypeScript

import { dividerVariants } from "./variants"
import type { DividerProps } from "./divider"
export default function Divider({
className,
color,
opacity,
variant,
}: DividerProps) {
const classNames = dividerVariants({ className, color, opacity, variant })
return <div className={classNames} />
}