You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
407 B
11 lines
407 B
import * as React from 'react';
|
|
import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
|
import { Variant } from './types';
|
|
export interface SpinnerProps extends React.HTMLAttributes<HTMLElement>, BsPrefixProps {
|
|
animation: 'border' | 'grow';
|
|
size?: 'sm';
|
|
variant?: Variant;
|
|
}
|
|
declare const Spinner: BsPrefixRefForwardingComponent<'div', SpinnerProps>;
|
|
export default Spinner;
|