8 lines
250 B
TypeScript
8 lines
250 B
TypeScript
import type { VariantProps } from "class-variance-authority"
|
|
|
|
import type { dividerVariants } from "./variants"
|
|
|
|
export interface DividerProps
|
|
extends Omit<React.HTMLAttributes<HTMLDivElement>, "color">,
|
|
VariantProps<typeof dividerVariants> {}
|