import { CheckCircleIcon, CloseCircleIcon, CloseIcon, SpinnerIcon } from "@iconicicons/react";
import { ProgressBar } from "@lemonsqueezy/wedges";
export default function Example() {
return (
}
helperText="27MB of 60MB"
indicator="50%"
label="Uploading..."
tooltip="A tooltip is a small box that appears when hovering over a UI element, providing additional information."
value={50}
/>
}
color="green"
helperText="60MB of 60MB"
indicator="100%"
label="Uploading Complete"
tooltip="A tooltip is a small box that appears when hovering over a UI element, providing additional information."
value={100}
/>
}
color="red"
helperText={
Oops, something went wrong}
label="Uploading Failed"
tooltip="A tooltip is a small box that appears when hovering over a UI element, providing additional information."
value={100}
/>
}
color="secondary"
description="(23.6MB)"
indicator={
50% (9 sec left)}
label="design system.fig"
tooltip="A tooltip is a small box that appears when hovering over a UI element, providing additional information."
value={50}
/>
}
indicator="50%"
label="Progress"
tooltip="A tooltip is a small box that appears when hovering over a UI element, providing additional information."
value={50}
variant="inline"
/>
}
description="35%"
value={35}
variant="inline"
color="yellow"
/>
);
}