{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "input-start-end-content-demo",
  "type": "registry:component",
  "title": "Input Start End Content Demo",
  "description": "A demo of the input start end content",
  "registryDependencies": [
    "https://ui.ednesdayw.com/r/input.json"
  ],
  "files": [
    {
      "path": "src/registry/example/input/start-end-content.tsx",
      "content": "import { Input } from \"@/components/ui/input\";\nimport { CheckCheck, SearchIcon } from \"lucide-react\";\n\nexport const InputStartEndContentExample = () => {\n  const startContent = <SearchIcon size={20} />;\n  const endContent = <CheckCheck size={20} />;\n\n  return (\n    <div className=\"flex flex-col gap-4 w-full max-w-72\">\n      <Input\n        variant=\"bordered\"\n        placeholder=\"Please enter\"\n        startContent={startContent}\n      />\n      <Input\n        variant=\"bordered\"\n        placeholder=\"Please enter\"\n        endContent={endContent}\n      />\n      <Input\n        variant=\"bordered\"\n        placeholder=\"Please enter\"\n        startContent={startContent}\n        endContent={endContent}\n      />\n    </div>\n  );\n};\n",
      "type": "registry:component",
      "target": "components/demo/input-start-end-content-demo.tsx"
    }
  ]
}