11 lines
199 B
TypeScript
11 lines
199 B
TypeScript
|
/**
|
||
|
* Internal dependencies
|
||
|
*/
|
||
|
import './style.scss';
|
||
|
|
||
|
const Spinner = (): JSX.Element => {
|
||
|
return <span className="wc-block-components-spinner" aria-hidden="true" />;
|
||
|
};
|
||
|
|
||
|
export default Spinner;
|