Components
Animated log out icon that slides its arrow on hover, tap, or view for auth and sign-out actions.
Loading preview...
import { LogOut } from '@/components/ui/icons-log-out';
export default function LogOutIconDemo() {
return (
<div className="flex min-h-52 items-center justify-center">
<LogOut className="text-foreground" size={32} animateOnHover />
</div>
);
}