8 lines
245 B
TypeScript
8 lines
245 B
TypeScript
import type { VariantProps } from "class-variance-authority"
|
|
|
|
import type { heroVariants } from "./heroVariants"
|
|
|
|
export interface HeroProps
|
|
extends Omit<React.HTMLAttributes<HTMLDivElement>, "color">,
|
|
VariantProps<typeof heroVariants> {}
|