import React from 'react'; import { Path, StopProps } from 'react-native-svg'; import { IconProps, RootSvg } from './utils/base'; type LoadingProps = IconProps & Partial> & { startColor?: StopProps['stopColor']; stopColor?: StopProps['stopColor']; }; export const Loading = (props: LoadingProps) => { const { height = 16, startColor, stopColor, stopOpacity = 0.3, viewBox = '0 0 20 20', width = 16, } = props; const baseColor = startColor ?? stopColor ?? '#006CFF'; const accentColor = stopColor ?? startColor ?? '#006CFF'; return ( ); };