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

9 lines
282 B
TypeScript

import { heroVariants } from "./heroVariants"
import type { HeroProps } from "./hero"
export default function Hero({ className, color, children }: HeroProps) {
const classNames = heroVariants({ className, color })
return <section className={classNames}>{children}</section>
}