Files
web/components/Levels/levels.ts
2024-09-26 11:52:07 +02:00

11 lines
277 B
TypeScript

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