Files
web/components/TempDesignSystem/Divider/index.tsx
2024-04-05 08:43:58 +02:00

8 lines
236 B
TypeScript

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