Components
Loading preview...
Here is File Trigger component
@jollyshopland
npx shadcn@latest add https://21st.dev/r/jollyshopland/file-triggerimport { Label } from "@/components/ui/text-field-basic"
import { Input } from "@/components/ui/text-field-basic"
export function InputFile() {
return (
<div className="grid w-full max-w-sm items-center gap-1.5">
<Label htmlFor="picture">Picture</Label>
<Input type="file" id="picture" />
</div>
)
}
export default InputFile;