UNPKG

@shopify/cli-kit

Version:

A set of utilities, interfaces, and models that are common across all the platform features

9 lines (8 loc) 277 B
import React from 'react'; interface LoadingBarProps { title: string; noColor?: boolean; noProgressBar?: boolean; } declare const LoadingBar: ({ title, noColor, noProgressBar }: React.PropsWithChildren<LoadingBarProps>) => React.JSX.Element; export { LoadingBar };