mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-08 22:45:47 +00:00
11 lines
230 B
TypeScript
11 lines
230 B
TypeScript
import { Toggle } from "@/examples/base/ui/toggle"
|
|
import { Italic } from "lucide-react"
|
|
|
|
export function ToggleOutline() {
|
|
return (
|
|
<Toggle variant="outline" aria-label="Toggle italic">
|
|
<Italic />
|
|
</Toggle>
|
|
)
|
|
}
|