mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-27 06:34:12 +00:00
12 lines
303 B
TypeScript
12 lines
303 B
TypeScript
import { Input } from "@/components/ui/input"
|
|
import { Label } from "@/components/ui/label"
|
|
|
|
export function InputFile() {
|
|
return (
|
|
<div className="grid w-full max-w-sm items-center gap-1.5">
|
|
<Label htmlFor="picture">Picture</Label>
|
|
<Input id="picture" type="file" />
|
|
</div>
|
|
)
|
|
}
|