1import * as React from 'react';
2
3import { Image } from '../Image';
4
5const icon = require('../../assets/loading-indicator-icon.png');
6
7export function LoadingIndicatorIcon(props: Partial<React.ComponentProps<typeof Image>>) {
8  return <Image source={icon} {...props} />;
9}
10