1234567891011121314151617 |
- import {forwardRef} from 'react';
- import {SvgIcon, SVGIconProps} from './svgIcon';
- const IconRepeat = forwardRef<SVGSVGElement, SVGIconProps>((props, ref) => {
- return (
- <SvgIcon {...props} ref={ref}>
- <path d="m8,10.29c-.05-.05-.08-.11-.08-.19v-5.7l-1.67,1.29s-.1.05-.15.05c-.09,0-.16-.04-.22-.12l-.46-.59c-.04-.06-.05-.11-.05-.17,0-.09.04-.16.12-.22l2.46-1.9c.07-.05.16-.08.27-.08h.97c.08,0,.15.02.19.07.05.05.07.11.07.19v7.17c0,.07-.02.14-.07.19-.05.05-.11.08-.19.08h-1c-.07,0-.14-.03-.19-.08Z" />
- <path d="m3.66,16.04c-.19,0-.38-.07-.53-.22L.26,12.94c-.29-.29-.29-.77,0-1.06l2.88-2.88c.29-.29.77-.29,1.06,0s.29.77,0,1.06l-2.34,2.34,2.34,2.35c.29.29.29.77,0,1.06-.15.15-.34.22-.53.22Z" />
- <path d="m13.21,13.16H.79c-.41,0-.75-.34-.75-.75s.34-.75.75-.75h12.42c.69,0,1.25-.56,1.25-1.25V2.83c0-.69-.56-1.25-1.25-1.25H2.8c-.69,0-1.25.56-1.25,1.25v5.81c0,.41-.34.75-.75.75s-.75-.34-.75-.75V2.83C.05,1.31,1.28.08,2.8.08h10.42c1.52,0,2.75,1.23,2.75,2.75v7.58c0,1.52-1.23,2.75-2.75,2.75Z" />
- </SvgIcon>
- );
- });
- IconRepeat.displayName = 'IconRepeat';
- export {IconRepeat};
|