@gluestack-ui/core
Version:
Universal UI components for React Native, Expo, and Next.js
10 lines • 434 B
JSX
import { Progress as ProgressMain } from './Progress';
import { ProgressFilledTrack } from './ProgressFilledTrack';
export function createProgress({ Root, FilledTrack, }) {
const Progress = ProgressMain(Root);
Progress.FilledTrack = ProgressFilledTrack(FilledTrack);
Progress.displayName = 'Progress';
Progress.FilledTrack.displayName = 'Progress.FilledTrack';
return Progress;
}
//# sourceMappingURL=index.jsx.map