Files
web/components/TempDesignSystem/Divider/index.tsx
2024-04-02 13:43:23 +02:00

8 lines
214 B
TypeScript

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