Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
import { ProgressBar } from "twenty-ui/feedback";\n\nexport const MyComponent = () => {\n return (\n <ProgressBar\n duration={6000}\n delay={0}\n easing="easeInOut"\n barHeight={10}\n barColor="#4bb543"\n autoStart={true}\n />\n );\n};
doğru
import { CircularProgressBar } from "@/ui/feedback/progress-bar/components/CircularProgressBar";\n\nexport const MyComponent = () => {\n return <CircularProgressBar size={80} barWidth={6} barColor="green" />;\n};
Was this page helpful?