import { CSSProperties } from 'react' import './index.os.less' export type IconLoadingProps = { style?: CSSProperties width?: CSSProperties['width'] } const IconLoading = ({ style, width = 75 }: IconLoadingProps) => { return ( ) } export default IconLoading