@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 546 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const RepeatFill = /* @__PURE__ */ memo(function RepeatFill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M6 4h15a1 1 0 0 1 1 1v7h-2V6H6v3L1 5l5-4zm12 16H3a1 1 0 0 1-1-1v-7h2v6h14v-3l5 4-5 4z"/>
</Svg>);
});
/**
* Remix Icon: Repeat Fill
* @see {@link https://remixicon.com/icon/repeat-fill Remix Icon Docs}
*/
export { RepeatFill };