UNPKG

@chakra-ui/react

Version:

Responsive and accessible React UI components built with React and Emotion

98 lines (94 loc) 2.02 kB
"use strict"; 'use strict'; var config = require('../../styled-system/config.cjs'); var progress = require('@ark-ui/react/progress'); const progressCircleSlotRecipe = config.defineSlotRecipe({ className: "chakra-progress-circle", slots: progress.progressAnatomy.keys(), base: { root: { display: "inline-flex", textStyle: "sm", position: "relative" }, circle: { _indeterminate: { animation: "spin 2s linear infinite" } }, circleTrack: { "--track-color": "colors.colorPalette.muted", stroke: "var(--track-color)" }, circleRange: { stroke: "colorPalette.solid", transitionProperty: "stroke-dashoffset, stroke-dasharray", transitionDuration: "0.6s", _indeterminate: { animation: "circular-progress 1.5s linear infinite" } }, label: { display: "inline-flex" }, valueText: { lineHeight: "1", fontWeight: "medium", letterSpacing: "tight", fontVariantNumeric: "tabular-nums" } }, variants: { size: { xs: { circle: { "--size": "24px", "--thickness": "4px" }, valueText: { textStyle: "2xs" } }, sm: { circle: { "--size": "32px", "--thickness": "5px" }, valueText: { textStyle: "2xs" } }, md: { circle: { "--size": "40px", "--thickness": "6px" }, valueText: { textStyle: "xs" } }, lg: { circle: { "--size": "48px", "--thickness": "7px" }, valueText: { textStyle: "sm" } }, xl: { circle: { "--size": "64px", "--thickness": "8px" }, valueText: { textStyle: "sm" } } } }, defaultVariants: { size: "md" } }); exports.progressCircleSlotRecipe = progressCircleSlotRecipe;