input
Input with subtle background
Input with subtle background
Загрузка превью…
src/input/c-input-26.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="subtle-bg">Subtle Background</FieldLabel>
<Input
id="subtle-bg"
class="bg-muted focus-visible:bg-muted hover:bg-muted transition-colors duration-300"
placeholder="Enter text..."
/>
</Field>
</template>