import { cva, type VariantProps } from 'class-variance-authority'; import type React from 'react'; import { cn } from '@/lib/utils'; const glowVariants = cva('absolute w-full', { variants: { variant: { top: 'top-0', above: '-top-[128px]', bottom: 'bottom-0', below: '-bottom-[128px]', center: 'top-[50%]', }, }, defaultVariants: { variant: 'top', }, }); function Glow({ className, variant, ...props }: React.ComponentProps<'div'> & VariantProps) { return (
); } export default Glow;