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"; export const MyComponent = () => { return ( <ProgressBar duration={6000} delay={0} easing="easeInOut" barHeight={10} barColor="#4bb543" autoStart={true} /> ); };
verdadeiro
import { CircularProgressBar } from "@/ui/feedback/progress-bar/components/CircularProgressBar"; export const MyComponent = () => { return <CircularProgressBar size={80} barWidth={6} barColor="green" />; };
Was this page helpful?