File "Loading.js"
Full Path: /home/tekvhqgl/public_html/dev2024_old_skip/wp-content/plugins/presto-player/src/admin/settings/components/Loading.js
File size: 253 bytes
MIME-type: text/plain
Charset: utf-8
const { Spinner, Flex, FlexItem } = wp.components;
export default ({ height = 100 }) => {
return (
<Flex style={{ height: `${height}px` }} align="center" justify="center">
<FlexItem>
<Spinner />
</FlexItem>
</Flex>
);
};