8 lines
241 B
TypeScript
8 lines
241 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> {}
|