11 lines
282 B
TypeScript
11 lines
282 B
TypeScript
import type { VariantProps } from "class-variance-authority"
|
|
|
|
import type { levelVariants } from "./variants"
|
|
|
|
export interface LevelProps
|
|
extends Omit<React.HTMLAttributes<HTMLOrSVGElement>, "color">,
|
|
VariantProps<typeof levelVariants> {
|
|
height?: string
|
|
width?: string
|
|
}
|