UNPKG

419 BTypeScriptView Raw
1import React from 'react';
2import { BsPrefixPropsWithChildren } from './helpers';
3import { Variant } from './types';
4export interface SpinnerProps extends React.HTMLAttributes<HTMLElement>, BsPrefixPropsWithChildren {
5 animation: 'border' | 'grow';
6 size?: 'sm';
7 variant?: Variant;
8}
9declare const Spinner: React.ForwardRefExoticComponent<SpinnerProps & React.RefAttributes<unknown>>;
10export default Spinner;