toggle
Toggle with button and icon.
Toggle with button and icon.
Загрузка превью…
src/toggle/c-toggle-4.vue
<!--
Расхождение с апстримом: `IconPlaceholder` заменена инлайновым `<svg>`
(lucide-react v0.545.0 "bold") — см. docs/PORTING.md §5.
-->
<script setup lang="ts">
import { Button } from "@/components/ui/button"
import { Toggle } from "@/components/ui/toggle"
</script>
<template>
<div class="flex flex-col items-center justify-center gap-4">
<div class="flex items-center gap-2">
<Button size="sm" variant="outline">Button</Button>
<Toggle variant="outline" size="sm" aria-label="Small toggle">Toggle</Toggle>
</div>
<div class="flex items-center gap-2">
<Button variant="outline" size="icon">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
aria-hidden="true"
class="lucide lucide-bold"
>
<path d="M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8" />
</svg>
</Button>
<Toggle variant="outline" aria-label="Toggle bold icon">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
aria-hidden="true"
class="lucide lucide-bold"
>
<path d="M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8" />
</svg>
</Toggle>
</div>
</div>
</template>