12345678910111213141516 |
- import * as React from 'react';
- import SvgIcon, {SVGIconProps} from './svgIcon';
- const IconRefresh = React.forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
- return (
- <SvgIcon {...props} ref={ref}>
- <path d="M11.14,6.35a.76.76,0,0,1-.75-.75v-4a.75.75,0,0,1,.75-.75h4a.75.75,0,1,1,0,1.5H11.89V5.6A.76.76,0,0,1,11.14,6.35Z" />
- <path d="M8,15.9A7.9,7.9,0,0,1,8,.1.75.75,0,0,1,8,1.6a6.39,6.39,0,1,0,2.81.65A.75.75,0,1,1,11.48.91,7.83,7.83,0,0,1,15.9,8,7.91,7.91,0,0,1,8,15.9Z" />
- </SvgIcon>
- );
- });
- IconRefresh.displayName = 'IconRefresh';
- export {IconRefresh};
|