mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-27 22:54:18 +00:00
13 lines
370 B
TypeScript
13 lines
370 B
TypeScript
import { Field, FieldDescription, FieldLabel } from "@/examples/base/ui/field"
|
|
import { Input } from "@/examples/base/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>
|
|
)
|
|
}
|