Files
shadcn-ui/apps/www/registry/default/example/toggle-with-text.tsx
2023-06-22 22:44:52 +04:00

13 lines
263 B
TypeScript

import { Italic } from "lucide-react"
import { Toggle } from "@/registry/default/ui/toggle"
export default function ToggleWithText() {
return (
<Toggle aria-label="Toggle italic">
<Italic className="mr-2 h-4 w-4" />
Italic
</Toggle>
)
}