mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
11 lines
419 B
TypeScript
11 lines
419 B
TypeScript
import React from 'react';
|
|
import { BsPrefixPropsWithChildren } from './helpers';
|
|
import { Variant } from './types';
|
|
export interface SpinnerProps extends React.HTMLAttributes<HTMLElement>, BsPrefixPropsWithChildren {
|
|
animation: 'border' | 'grow';
|
|
size?: 'sm';
|
|
variant?: Variant;
|
|
}
|
|
declare const Spinner: React.ForwardRefExoticComponent<SpinnerProps & React.RefAttributes<unknown>>;
|
|
export default Spinner;
|