UNPKG

@stratakit/react

Version:

A React component library for StrataKit

18 lines (17 loc) 902 B
import * as React from "react"; import type { ProgressRadial as IuiSpinner } from "@itwin/itwinui-react"; import type { PolymorphicForwardRefComponent } from "./~utils.js"; type IuiSpinnerProps = React.ComponentProps<typeof IuiSpinner>; interface ProgressRadialProps extends Pick<IuiSpinnerProps, "value" | "indeterminate" | "status" | "size" | "children"> { /** NOT IMPLEMENTED */ value?: IuiSpinnerProps["value"]; /** NOT IMPLEMENTED. At the moment, always will be in indeterminate mode regardless of this prop's value. */ indeterminate?: IuiSpinnerProps["indeterminate"]; /** NOT IMPLEMENTED */ status?: IuiSpinnerProps["status"]; /** NOT IMPLEMENTED */ children?: IuiSpinnerProps["children"]; } /** @see https://itwinui.bentley.com/docs/progressindicator */ export declare const ProgressRadial: PolymorphicForwardRefComponent<"div", ProgressRadialProps>; export {};