mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
25 lines
428 B
TypeScript
25 lines
428 B
TypeScript
const App = `import {Progress} from "@nextui-org/react";
|
|
|
|
export default function App() {
|
|
return (
|
|
<Progress
|
|
label="Monthly expenses"
|
|
size="sm"
|
|
value={4000}
|
|
maxValue={10000}
|
|
color="warning"
|
|
formatOptions={{style: "currency", currency: "ARS"}}
|
|
showValueLabel={true}
|
|
className="max-w-md"
|
|
/>
|
|
);
|
|
}`;
|
|
|
|
const react = {
|
|
"/App.jsx": App,
|
|
};
|
|
|
|
export default {
|
|
...react,
|
|
};
|