package.dist.esm.components.progress.progress.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of react Show documentation
Show all versions of react Show documentation
Responsive and accessible React UI components built with React and Emotion
The newest version!
"use strict";
"use client";
import { Progress } from '@ark-ui/react/progress';
import { createSlotRecipeContext } from '../../styled-system/create-slot-recipe-context.js';
const {
withProvider,
withContext,
useStyles: useProgressStyles,
PropsProvider
} = createSlotRecipeContext({ key: "progress" });
const ProgressRootProvider = withProvider(Progress.RootProvider, "root", { forwardAsChild: true });
const ProgressRoot = withProvider(
Progress.Root,
"root"
);
const ProgressPropsProvider = PropsProvider;
const ProgressLabel = withContext(
Progress.Label,
"label",
{ forwardAsChild: true }
);
const ProgressTrack = withContext(
Progress.Track,
"track",
{ forwardAsChild: true }
);
const ProgressRange = withContext(
Progress.Range,
"range",
{ forwardAsChild: true }
);
const ProgressValueText = withContext(Progress.ValueText, "valueText", { forwardAsChild: true });
const ProgressContext = Progress.Context;
export { ProgressContext, ProgressLabel, ProgressPropsProvider, ProgressRange, ProgressRoot, ProgressRootProvider, ProgressTrack, ProgressValueText, useProgressStyles };
© 2015 - 2025 Weber Informatics LLC | Privacy Policy