1 | import * as React from 'react';
|
2 | import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
3 | import { Variant } from './types';
|
4 | export interface SpinnerProps extends React.HTMLAttributes<HTMLElement>, BsPrefixProps {
|
5 | animation?: 'border' | 'grow';
|
6 | size?: 'sm';
|
7 | variant?: Variant;
|
8 | }
|
9 | declare const Spinner: BsPrefixRefForwardingComponent<'div', SpinnerProps>;
|
10 | export default Spinner;
|