input
Pill-shaped input
Pill-shaped input
Загрузка превью…
src/input/c-input-30.vue
<script setup lang="ts">
import { Field, FieldLabel } from "@/components/ui/field"
import { Input } from "@/components/ui/input"
</script>
<template>
<Field class="w-full max-w-xs">
<FieldLabel for="pill-input">Search</FieldLabel>
<Input
id="pill-input"
class="rounded-full px-4"
placeholder="Search everything..."
/>
</Field>
</template>