{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "header-field",
  "type": "registry:component",
  "title": "Header Field",
  "description": "Text Field for Header elements",
  "dependencies": [
    "react",
    "next"
  ],
  "registryDependencies": [
    "@uifoundry/field-types"
  ],
  "files": [
    {
      "path": "registry/payload/fields/header/config.ts",
      "content": "import type { TextField } from \"@/registry/default/lib/fields\";\n\nexport default function headerField(props?: Partial<TextField>): TextField {\n\treturn {\n\t\tname: props?.name ?? \"header\",\n\t\tlabel: props?.label ?? \"Header\",\n\t\tdefaultValue:\n\t\t\tprops?.defaultValue ?? \"Modern Solutions for Customer Engagement\",\n\t\trequired: props?.required ?? true,\n\t\t...props,\n\t\ttype: \"text\",\n\t} as TextField;\n}\n",
      "type": "registry:component",
      "target": "src/payload/fields/header/config.ts"
    }
  ]
}