Skip to content

Commit 3b66c5f

Browse files
dhavalveeraSutuSebastian
authored andcommitted
added missing labelText to show label
1 parent 785f9e9 commit 3b66c5f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

apps/web/examples/progress/progress.circular.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ export function Component() {
1212
`;
1313

1414
const codeRSC = `
15-
import { Progress } from "flowbite-react";
15+
import { ProgressCircular } from "flowbite-react";
1616
1717
export function Component() {
18-
return <Progress.Circular progress={45} />;
18+
return <ProgressCircular progress={45} />;
1919
}
2020
`;
2121

apps/web/examples/progress/progress.circularWithText.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@ const code = `
77
import { Progress } from "flowbite-react";
88
99
export function Component() {
10-
return <Progress.Circular progress={45} textLabel="45%" />;
10+
return <Progress.Circular progress={45} labelText textLabel="45%" />;
1111
}
1212
`;
1313

1414
const codeRSC = `
15-
import { Progress } from "flowbite-react";
15+
import { ProgressCircular } from "flowbite-react";
1616
1717
export function Component() {
18-
return <Progress.Circular progress={45} textLabel="45%" />;
18+
return <ProgressCircular progress={45} labelText textLabel="45%" />;
1919
}
2020
`;
2121

2222
export function Component() {
23-
return <Progress.Circular progress={45} textLabel="45%" />;
23+
return <Progress.Circular progress={45} labelText textLabel="45%" />;
2424
}
2525

2626
export const circularProgressWithText: CodeData = {

0 commit comments

Comments
 (0)