Progress

Displays an indicator showing the completion progress of a task, typically displayed as a progress bar.
# Demo
# Attributes
NameTypeDefaultDetails
classNamestring' 'You can customise by passing tailwind classes.
valuenumberRequiredYou can pass value to render progress.
# Usage
import { NProgress } from 'nayan'; const Progress = () => { return <NProgress value={50} />; }; export default Progress;