SubHeader Field
uifoundry/subheader-fieldFreeComponent
Text Field for SubHeader elements
Live preview
live · rendered by the registry
Rendered by uifoundry on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://uifoundry.dev/r/subheader-field.jsonSource
1import type { TextField } from "@/registry/default/lib/fields";23export default function subheaderField(props?: Partial<TextField>): TextField {4 return {5 name: props?.name ?? "subheader",6 label: props?.label ?? "SubHeader",7 defaultValue:8 props?.defaultValue ??9 "Highly customizable components for building modern websites and applications that look and feel the way you mean it.",10 required: props?.required ?? false,11 ...props,12 type: "text",13 } as TextField;14}
What it pulls in
npm packages
Other registry items
Files it writes
More from uifoundry
All 54 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Animated Groupanimated-group | uifoundry | Components | Free | 2 deps | |
| Buttonbutton | uifoundry | Components | Free | 3 deps | |
| Call To Action Pair Fieldcall-to-action-pair-field | uifoundry | Components | Free | 3 deps | |
| Cardcard | uifoundry | Components | Free | 1 dep | |
| Description Fielddescription-field | uifoundry | Components | Free | 2 deps | |
| Flickering Gridflickering-grid | uifoundry | Components | Free | 1 dep | |
| Header Fieldheader-field | uifoundry | Components | Free | 2 deps | |
| Icon Componenticon | uifoundry | Components | Free | 2 deps |
