mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-25 13:46:07 +00:00
17 lines
383 B
TypeScript
17 lines
383 B
TypeScript
import {
|
|
Field,
|
|
FieldDescription,
|
|
FieldLabel,
|
|
} from "@/styles/base-nova/ui/field"
|
|
import { Input } from "@/styles/base-nova/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>
|
|
)
|
|
}
|