mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +00:00
13 lines
372 B
TypeScript
13 lines
372 B
TypeScript
import { Field, FieldDescription, FieldLabel } from "@/examples/radix/ui/field"
|
|
import { Input } from "@/examples/radix/ui/input"
|
|
|
|
export function InputFile() {
|
|
return (
|
|
<Field>
|
|
<FieldLabel htmlFor="picture">Picture</FieldLabel>
|
|
<Input id="picture" type="file" />
|
|
<FieldDescription>Select a picture to upload.</FieldDescription>
|
|
</Field>
|
|
)
|
|
}
|