mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-30 08:00:08 +02:00

Apply minor upgrades to Bootstrap 5 and react-bootstrap GitOrigin-RevId: eb013f38515ebd4b9572d139f00841aca344e3c6
16 lines
326 B
TypeScript
16 lines
326 B
TypeScript
import { Spinner } from 'react-bootstrap'
|
|
|
|
export type OLSpinnerSize = 'sm' | 'lg'
|
|
|
|
function OLSpinner({ size = 'sm' }: { size: OLSpinnerSize }) {
|
|
return (
|
|
<Spinner
|
|
size={size === 'sm' ? 'sm' : undefined}
|
|
animation="border"
|
|
aria-hidden="true"
|
|
role="status"
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default OLSpinner
|