import * as React from "react" import { cn } from "@/lib/utils" export interface HeroOverlayProps extends React.HTMLAttributes {} const HeroOverlay = React.forwardRef(({ className, ...props }, ref) => { return (
) }) HeroOverlay.displayName = "HeroOverlay" export { HeroOverlay }