UNPKG

438 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 role?: string;
7 size?: 'sm';
8 variant?: Variant;
9}
10declare const Spinner: React.ForwardRefExoticComponent<SpinnerProps & React.RefAttributes<unknown>>;
11export default Spinner;