Components
Loading preview...
Here is Actions component
npx shadcn@latest add https://21st.dev/r/vercel/actions
import { Actions, Action } from '@/components/ui/actions';
import { ThumbsUpIcon } from 'lucide-react';
export default function DemoOne() {
return <Actions className="mt-2">
<Action label="Like">
<ThumbsUpIcon className="size-4" />
</Action>
</Actions>;
}