UNPKG

react-loading-indicators

Version:

Kit of elegant loading indicators for react applications

14 lines (10 loc) 418 B
import { C as CommonProps } from './common.types.d-a5NbnUWh.js'; import React from 'react'; interface ThreeDotProps extends CommonProps { /** * Variant of a ThreeDot loading indicator. Defaults to `Pulsate`. */ variant?: "pulsate" | "bob" | "brick-stack" | "bounce"; } declare const ThreeDot: (props: ThreeDotProps) => React.JSX.Element | null; export { type ThreeDotProps, ThreeDot as default };