All icons
RocketIcon
MiscAnimated, copy-ready variants of the RocketIcon icon, powered by Motion.
Animations
Click a card to copy its Motion snippet - drop it straight into a "use client" component.
Installation
Animated component. Pulls animated-rocket-icon.tsx into your project with every variant above, and installs motion and the icon set for you:
$
pnpm dlx shadcn@latest add https://nawalkattel.com.np/r/icon-rocket-icon.jsonimport { AnimatedRocketIcon } from "@/components/ui/animated-rocket-icon";
export function Example() {
return <AnimatedRocketIcon variant="pulse" className="size-6" />;
}Icon only. If you just want the glyph, install the set and import it directly:
$
pnpm add @radix-ui/react-iconsimport { RocketIcon } from "@radix-ui/react-icons";
export function Example() {
return <RocketIcon className="size-6" />;
}Animated usage
Animations use motion - install it with pnpm add motion, then wrap the icon in a motion.span. Each card above copies its own variant; here's the full component:
"use client";
import { motion } from "motion/react";
import { RocketIcon } from "@radix-ui/react-icons";
export function AnimatedRocketIcon() {
return (
<motion.span
animate={{ rotate: 360 }}
transition={{ duration: 1.8, ease: "linear", repeat: Infinity }}
>
<RocketIcon className="size-6" />
</motion.span>
);
}