input-group
shadcn-vue/input-groupFreeComponent
shadcn-vue publishes no description for this item.
Live preview
live · rendered by the registry
Rendered by shadcn-vue on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://shadcn-vue.com/r/styles/new-york/input-group.jsonSource
1<script setup lang="ts">2import type { HTMLAttributes } from "vue"3import { cn } from "@/lib/utils"45const props = defineProps<{6 class?: HTMLAttributes["class"]7}>()8</script>910<template>11 <div12 data-slot="input-group"13 role="group"14 :class="cn(15 'group/input-group border-input dark:bg-input/30 relative flex w-full items-center rounded-md border outline-none',16 'h-9 min-w-0 has-[>textarea]:h-auto',1718 // Variants based on alignment.19 'has-[>[data-align=inline-start]]:[&>input]:pl-2',20 'has-[>[data-align=inline-end]]:[&>input]:pr-2',21 'has-[>[data-align=block-start]]:h-auto has-[>[data-align=block-start]]:flex-col has-[>[data-align=block-start]]:[&>input]:pb-3',22 'has-[>[data-align=block-end]]:h-auto has-[>[data-align=block-end]]:flex-col has-[>[data-align=block-end]]:[&>input]:pt-3',2324 // Focus state.25 'has-[[data-slot=input-group-control]:focus-visible]:ring-ring has-[[data-slot=input-group-control]:focus-visible]:ring-1',2627 props.class,28 )"29 >30 <slot />31 </div>32</template>
What it pulls in
Other registry items
Files it writes
More from shadcn-vue
All 65 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| accordionaccordion | shadcn-vue | Components | Free | 2 deps · 5 files | |
| alertalert | shadcn-vue | Components | Free | no deps · 4 files | |
| alert-dialogalert-dialog | shadcn-vue | Components | Free | 2 deps · 10 files | |
| aspect-ratioaspect-ratio | shadcn-vue | Components | Free | 1 dep · 2 files | |
| attachmentattachment | shadcn-vue | Components | Free | 1 dep · 10 files | |
| avataravatar | shadcn-vue | Components | Free | 2 deps · 4 files | |
| badgebadge | shadcn-vue | Components | Free | 2 deps · 2 files | |
| breadcrumbbreadcrumb | shadcn-vue | Components | Free | 1 dep · 8 files |
