mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 14:59:16 +01:00
12 lines
438 B
TypeScript
12 lines
438 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';
|
|
role?: string;
|
|
size?: 'sm';
|
|
variant?: Variant;
|
|
}
|
|
declare const Spinner: React.ForwardRefExoticComponent<SpinnerProps & React.RefAttributes<unknown>>;
|
|
export default Spinner;
|