Files
web/components/Levels/levels.ts
2024-12-12 11:47:44 +01:00

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
}