ente/src/components/EnteSpinner.tsx

14 lines
276 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"
variant="success"
role="status"
/>
);
}