Reusables

File uploaders

Single Image Upload

A customizable single image upload component with drag and drop support, image preview, and upload progress.

Features

  • Drag and drop support
  • Image preview
  • Upload progress indication
  • Direct or manual upload modes
  • Error handling
  • Customizable styles
  • Dark mode support
  • Display modes (Grid/List)

Installation

npx shadcn@latest add "https://reusables.vercel.app/r/single-image-upload"

Usage

import { SingleImageDropzone } from "@/components/ui/single-image-upload"

Examples

The examples below uses the useFileUpload hook to handle the upload process.

Direct Upload

This example demonstrates direct file upload upon selection with a linear progress bar indicator.

Manual Upload

This example shows manual upload control with a circular progress indicator.

React Hook Form

Add New Product

Upload a product image (PNG, JPG, WEBP)

Reference

PropTypeDefault
width
string
100%
height
string
200px
className
string
-
value
File | string
-
onChange
(file?: File) => void | Promise<void>
-
disabled
boolean
-
dropzoneOptions
Omit<DropzoneOptions, 'disabled'>
-
directUpload
boolean
true
progress
number
-
progressType
'circular' | 'linear'
circular
Edit on GitHub

Last updated on

On this page