Files
web/components/Blocks/DynamicContent/Overview/Friend/Hero/hero.ts
2024-09-24 09:47:31 +02:00

8 lines
235 B
TypeScript

import { VariantProps } from "class-variance-authority"
import { heroVariants } from "./heroVariants"
export interface HeroProps
extends Omit<React.HTMLAttributes<HTMLDivElement>, "color">,
VariantProps<typeof heroVariants> {}