import { FC } from 'react'; import { Base, BaseProps } from '../Base'; export const LayoutLoadingSpinnerView: FC> = props => { const { ...rest } = props; return ( ); }