Glow Card
Interactive card with mouse-following glow effect.
Loading...
Properties
#ffffff
Color of the glow
300
Size of the glow effect
16
Border radius
Installation
npm install @reactomega/uiUsage
Usage
import { GlowCard } from '@reactomega/ui';
export default function App() {
return (
<GlowCard className="p-8 text-white">
<h3 className="text-xl font-bold">Cosmic Card</h3>
<p className="mt-2 text-white/60">Hover over me to see the glow effect.</p>
</GlowCard>
);
}