import React from "react"; import { cn } from "@/lib/utils"; type SpotlightProps = { className?: string; fill?: string; }; export const Spotlight = ({ className, fill }: SpotlightProps) => { return ( ); };