Files
shadcn-ui/apps/www/public/r/styles/default/input-file.json
shadcn 254198b4bf feat: add shadcn/registry (#6339)
* feat: implement shadcn/registry

* feat: add schema field

* fix: import

* chore: add changeset

* chore: remove console

* fix: tests

* fix: diff command

* feat: move to schema/registy-item.json

* fix

* ci: switch to node 20

* ci: build packages
2025-01-14 10:50:19 +04:00

17 lines
702 B
JSON

{
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
"name": "input-file",
"type": "registry:example",
"author": "shadcn (https://ui.shadcn.com)",
"registryDependencies": [
"input"
],
"files": [
{
"path": "examples/input-file.tsx",
"content": "import { Input } from \"@/registry/default/ui/input\"\nimport { Label } from \"@/registry/default/ui/label\"\n\nexport default function InputFile() {\n return (\n <div className=\"grid w-full max-w-sm items-center gap-1.5\">\n <Label htmlFor=\"picture\">Picture</Label>\n <Input id=\"picture\" type=\"file\" />\n </div>\n )\n}\n",
"type": "registry:example",
"target": ""
}
]
}