button
Button with icon, label, and shortcut keys
Button with icon, label, and shortcut keys
Загрузка превью…
src/button/c-button-40.vue
<script setup lang="ts">
import { Button } from "@/components/ui/button"
import { Kbd, KbdGroup } from "@/components/ui/kbd"
</script>
<template>
<Button variant="outline" aria-label="Search (Command K)">
<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-search"
>
<path d="m21 21-4.34-4.34" />
<circle cx="11" cy="11" r="8" />
</svg>
<span>Search</span>
<KbdGroup aria-hidden="true">
<Kbd>⌘</Kbd>
<Kbd>K</Kbd>
</KbdGroup>
</Button>
</template>