File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
apps/web/examples/progress Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ export function Component() {
1212` ;
1313
1414const codeRSC = `
15- import { Progress } from "flowbite-react";
15+ import { ProgressCircular } from "flowbite-react";
1616
1717export function Component() {
18- return <Progress.Circular progress={45} />;
18+ return <ProgressCircular progress={45} />;
1919}
2020` ;
2121
Original file line number Diff line number Diff line change @@ -7,20 +7,20 @@ const code = `
77import { Progress } from "flowbite-react";
88
99export function Component() {
10- return <Progress.Circular progress={45} textLabel="45%" />;
10+ return <Progress.Circular progress={45} labelText textLabel="45%" />;
1111}
1212` ;
1313
1414const codeRSC = `
15- import { Progress } from "flowbite-react";
15+ import { ProgressCircular } from "flowbite-react";
1616
1717export function Component() {
18- return <Progress.Circular progress={45} textLabel="45%" />;
18+ return <ProgressCircular progress={45} labelText textLabel="45%" />;
1919}
2020` ;
2121
2222export function Component ( ) {
23- return < Progress . Circular progress = { 45 } textLabel = "45%" /> ;
23+ return < Progress . Circular progress = { 45 } labelText textLabel = "45%" /> ;
2424}
2525
2626export const circularProgressWithText : CodeData = {
You can’t perform that action at this time.
0 commit comments