UNPKG

react-loading-indicators

Version:

Kit of elegant loading indicators for react applications

18 lines (14 loc) 538 B
import { C as CommonProps } from './common.types.d-a5NbnUWh.js'; import React from 'react'; interface OrbitProgressProps extends CommonProps { /** * variant of an orbitting loading indicator. Defaults to `disc`. */ variant?: "dotted" | "spokes" | "disc" | "split-disc" | "track-disc"; /** * Make the animation more bold/compact. */ dense?: boolean; } declare const OrbitProgress: (props: OrbitProgressProps) => React.JSX.Element | null; export { type OrbitProgressProps, OrbitProgress as default };