mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 11:47:56 +01:00
9 lines
238 B
TypeScript
9 lines
238 B
TypeScript
import * as React from 'react';
|
|
|
|
const Spinner = ({ color = 'dark' }) => (
|
|
<div className={`spinner-grow d-block mx-auto text-${color}`} role="status">
|
|
<span className="sr-only">Loading...</span>
|
|
</div>
|
|
);
|
|
|
|
export default Spinner; |