Files
web/packages/design-system/lib/components/Divider/Divider.tsx
Christian Andolf 9551a629fa refactor: move divider to design system
remove not used variants and duplicate colors
2025-06-13 11:27:50 +02:00

9 lines
271 B
TypeScript

import { dividerVariants } from './variants'
import type { DividerProps } from './types'
export function Divider({ className, color, variant }: DividerProps) {
const classNames = dividerVariants({ className, color, variant })
return <hr className={classNames} />
}