File tree 2 files changed +6
-6
lines changed
apps/web/examples/progress
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ export function Component() {
12
12
` ;
13
13
14
14
const codeRSC = `
15
- import { Progress } from "flowbite-react";
15
+ import { ProgressCircular } from "flowbite-react";
16
16
17
17
export function Component() {
18
- return <Progress.Circular progress={45} />;
18
+ return <ProgressCircular progress={45} />;
19
19
}
20
20
` ;
21
21
Original file line number Diff line number Diff line change @@ -7,20 +7,20 @@ const code = `
7
7
import { Progress } from "flowbite-react";
8
8
9
9
export function Component() {
10
- return <Progress.Circular progress={45} textLabel="45%" />;
10
+ return <Progress.Circular progress={45} labelText textLabel="45%" />;
11
11
}
12
12
` ;
13
13
14
14
const codeRSC = `
15
- import { Progress } from "flowbite-react";
15
+ import { ProgressCircular } from "flowbite-react";
16
16
17
17
export function Component() {
18
- return <Progress.Circular progress={45} textLabel="45%" />;
18
+ return <ProgressCircular progress={45} labelText textLabel="45%" />;
19
19
}
20
20
` ;
21
21
22
22
export function Component ( ) {
23
- return < Progress . Circular progress = { 45 } textLabel = "45%" /> ;
23
+ return < Progress . Circular progress = { 45 } labelText textLabel = "45%" /> ;
24
24
}
25
25
26
26
export const circularProgressWithText : CodeData = {
You can’t perform that action at this time.
0 commit comments