import React from 'react'; interface LogoProps { className?: string; variant?: 'full' | 'icon'; // full includes text, icon is just the mask } export const Logo: React.FC = ({ className = "w-12 h-12", variant = 'icon' }) => { const logoUrl = "https://iili.io/fgyxLsn.md.png"; return (
Rudraksha Logo
); };