Leave Yamada UI a star

Star
Yamada UIYamada UIv1.6.4

CircleProgress

CircleProgress is a component that displays progress in a circular progress bar.

Source@yamada-ui/progress

The CircleProgress follows the WAI-ARIA - Meter Pattern for accessibility.

Setting aria-label or aria-labelledby on CircleProgress will make it readable by screen readers.

<CircleProgress value={88} aria-label="Central Processing Unit (CPU) Usage" />
Copied!
<VStack gap="sm">
<Text as="h3" id="label">
Central Processing Unit (CPU) Usage
</Text>
<CircleProgress value={88} aria-labelledby="label" />
</VStack>
Copied!

ARIA Roles and Attributes

ComponentRoles and AttributesUsage
CircleProgressrole="meter"Indicates that this is a meter.
aria-valueminSets the min value. Default is 0.
aria-valuemaxSets the max value. Default is 100.
aria-valuenowSets the current value.
CircleProgressShape Internalaria-hiddenExcludes the element from the accessibility tree.

Edit this page on GitHub

PreviousProgressNextMedia and Icons