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