ente/src/components/EnteSpinner.tsx
2021-08-27 14:22:14 +05:30

19 lines
418 B
TypeScript

import React from 'react';
import { Spinner } from 'react-bootstrap';
export default function EnteSpinner(props) {
return (
<Spinner
{...props}
animation="border"
style={{
width: '36px',
height: '36px',
borderWidth: '0.20em',
color: '#51cd7c',
}}
role="status"
/>
);
}