mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
23 lines
381 B
TypeScript
23 lines
381 B
TypeScript
const App = `import {CircularProgress} from "@nextui-org/react";
|
|
|
|
export default function App() {
|
|
return (
|
|
<CircularProgress
|
|
label="Speed"
|
|
size="xl"
|
|
value={70}
|
|
color="success"
|
|
formatOptions={{ style: "unit", unit: "kilometer" }}
|
|
showValueLabel={true}
|
|
/>
|
|
);
|
|
}`;
|
|
|
|
const react = {
|
|
"/App.jsx": App,
|
|
};
|
|
|
|
export default {
|
|
...react,
|
|
};
|