Skip to content

Commit

Permalink
added missing labelText to show label
Browse files Browse the repository at this point in the history
  • Loading branch information
dhavalveera committed Sep 15, 2024
1 parent ff0487a commit fb1d1a3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions apps/web/examples/progress/progress.circular.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ export function Component() {
`;

const codeRSC = `
import { Progress } from "flowbite-react";
import { ProgressCircular } from "flowbite-react";
export function Component() {
return <Progress.Circular progress={45} />;
return <ProgressCircular progress={45} />;
}
`;

Expand Down
8 changes: 4 additions & 4 deletions apps/web/examples/progress/progress.circularWithText.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@ const code = `
import { Progress } from "flowbite-react";
export function Component() {
return <Progress.Circular progress={45} textLabel="45%" />;
return <Progress.Circular progress={45} labelText textLabel="45%" />;
}
`;

const codeRSC = `
import { Progress } from "flowbite-react";
import { ProgressCircular } from "flowbite-react";
export function Component() {
return <Progress.Circular progress={45} textLabel="45%" />;
return <ProgressCircular progress={45} labelText textLabel="45%" />;
}
`;

export function Component() {
return <Progress.Circular progress={45} textLabel="45%" />;
return <Progress.Circular progress={45} labelText textLabel="45%" />;
}

export const circularProgressWithText: CodeData = {
Expand Down

0 comments on commit fb1d1a3

Please sign in to comment.