{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "input",
  "title": "Input",
  "description": "A styled text input built on Base UI.",
  "dependencies": [
    "@base-ui/react@^1.4.1"
  ],
  "registryDependencies": [
    "@retab/utils"
  ],
  "files": [
    {
      "path": "registry/new-york-v4/ui/input.tsx",
      "content": "\"use client\";\n\nimport type * as React from \"react\";\n\nimport { cn } from \"@/lib/utils\";\n\nexport type InputProps = Omit<\n  React.ComponentProps<\"input\"> & React.RefAttributes<HTMLInputElement>,\n  \"size\"\n> & {\n  size?: \"sm\" | \"default\" | \"lg\" | number;\n  unstyled?: boolean;\n  nativeInput?: boolean;\n};\n\nexport function Input({\n  className,\n  size = \"default\",\n  unstyled = false,\n  nativeInput: _nativeInput = false,\n  style,\n  ...props\n}: InputProps): React.ReactElement {\n  const inputPaddingClass = unstyled ? \"px-3\" : \"px-[calc(--spacing(3)-1px)]\";\n  const smallInputPaddingClass = unstyled\n    ? \"px-2.5\"\n    : \"px-[calc(--spacing(2.5)-1px)]\";\n  const inputClassName = cn(\n    \"h-8.5 w-full min-w-0 rounded-[inherit] leading-8.5 outline-none [transition:background-color_5000000s_ease-in-out_0s] placeholder:text-muted-foreground/72 sm:h-7.5 sm:leading-7.5\",\n    inputPaddingClass,\n    size === \"sm\" &&\n      cn(\"h-7.5 leading-7.5 sm:h-6.5 sm:leading-6.5\", smallInputPaddingClass),\n    size === \"lg\" && \"h-9.5 leading-9.5 sm:h-8.5 sm:leading-8.5\",\n    props.type === \"search\" &&\n      \"[&::-webkit-search-cancel-button]:appearance-none [&::-webkit-search-decoration]:appearance-none [&::-webkit-search-results-button]:appearance-none [&::-webkit-search-results-decoration]:appearance-none\",\n    props.type === \"file\" &&\n      \"text-muted-foreground file:me-3 file:bg-transparent file:text-sm file:font-medium file:text-foreground\",\n  );\n\n  return (\n    <span\n      className={\n        cn(\n          !unstyled &&\n            \"border-input bg-background text-foreground ring-ring/24 has-autofill:bg-foreground/4 has-focus-visible:border-ring has-aria-invalid:border-destructive/36 has-focus-visible:has-aria-invalid:border-destructive/64 has-focus-visible:has-aria-invalid:ring-destructive/16 dark:bg-input/32 dark:has-autofill:bg-foreground/8 dark:has-aria-invalid:ring-destructive/24 relative inline-flex w-full rounded-lg border text-base shadow-xs/5 transition-shadow not-dark:bg-clip-padding before:pointer-events-none before:absolute before:inset-0 before:rounded-[calc(var(--radius-lg)-1px)] not-has-disabled:not-has-focus-visible:not-has-aria-invalid:before:shadow-[0_1px_--theme(--color-black/4%)] has-focus-visible:ring-[3px] has-disabled:opacity-64 has-[:disabled,:focus-visible,[aria-invalid]]:shadow-none sm:text-sm dark:not-has-disabled:not-has-focus-visible:not-has-aria-invalid:before:shadow-[0_-1px_--theme(--color-white/6%)]\",\n          className,\n        ) || undefined\n      }\n      data-size={size}\n      data-slot=\"input-control\"\n    >\n      <input\n        className={inputClassName}\n        data-slot=\"input\"\n        size={typeof size === \"number\" ? size : undefined}\n        style={typeof style === \"function\" ? undefined : style}\n        {...props}\n      />\n    </span>\n  );\n}\n",
      "type": "registry:ui",
      "target": "@ui/input.tsx"
    }
  ],
  "type": "registry:ui"
}