Files
web/components/Blocks/DynamicContent/Overview/Friend/Hero/hero.ts
2024-12-12 11:47:44 +01:00

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> {}