ente/src/components/EnteSpinner.tsx

19 lines
418 B
TypeScript
Raw Normal View History

2021-04-18 12:59:48 +00:00
import React from 'react';
2021-05-30 16:56:48 +00:00
import { Spinner } from 'react-bootstrap';
2021-04-18 12:59:48 +00:00
export default function EnteSpinner(props) {
return (
<Spinner
{...props}
animation="border"
2021-08-24 03:54:36 +00:00
style={{
width: '36px',
height: '36px',
borderWidth: '0.20em',
2021-08-27 08:52:14 +00:00
color: '#51cd7c',
2021-08-24 03:54:36 +00:00
}}
2021-04-18 12:59:48 +00:00
role="status"
/>
);
}