Components
Loading preview...
A two-state button that can be either on or off.
npx shadcn@latest add https://21st.dev/r/sean0205/toggle-1import { Toggle } from '@/components/ui/toggle-1';
import { Italic } from 'lucide-react';
export default function ToggleOutline() {
return (
<Toggle variant="outline" aria-label="Toggle italic">
<Italic />
</Toggle>
);
}