Migrate to a monorepo structure (#2909)
This commit is contained in:
@ -0,0 +1,5 @@
|
||||
import { CircularProgressBar } from "@/ui/feedback/progress-bar/components/CircularProgressBar";
|
||||
|
||||
export const MyComponent = () => {
|
||||
return <CircularProgressBar size={80} barWidth={6} barColor="green" />;
|
||||
};
|
||||
14
packages/twenty-docs/src/ui/feedback/progressBarCode.js
Normal file
14
packages/twenty-docs/src/ui/feedback/progressBarCode.js
Normal file
@ -0,0 +1,14 @@
|
||||
import { ProgressBar } from "@/ui/feedback/progress-bar/components/ProgressBar";
|
||||
|
||||
export const MyComponent = () => {
|
||||
return (
|
||||
<ProgressBar
|
||||
duration={6000}
|
||||
delay={0}
|
||||
easing="easeInOut"
|
||||
barHeight={10}
|
||||
barColor="#4bb543"
|
||||
autoStart={true}
|
||||
/>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user