mirror of
https://github.com/strapi/strapi.git
synced 2025-08-15 04:08:04 +00:00
20 lines
412 B
JavaScript
20 lines
412 B
JavaScript
![]() |
import React from 'react';
|
||
|
import { ClearIcon } from 'strapi-helper-plugin';
|
||
|
import Button from './Button';
|
||
|
import Indicator from './Indicator';
|
||
|
import Wrapper from './Wrapper';
|
||
|
|
||
|
const InfiniteLoadingIndicator = () => {
|
||
|
return (
|
||
|
<Wrapper>
|
||
|
<Indicator />
|
||
|
<Button type="button">
|
||
|
Cancel
|
||
|
<ClearIcon />
|
||
|
</Button>
|
||
|
</Wrapper>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default InfiniteLoadingIndicator;
|