@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 593 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M6 4H21C21.5523 4 22 4.44772 22 5V12H20V6H6V9L1 5L6 1V4ZM18 20H3C2.44772 20 2 19.5523 2 19V12H4V18H18V15L23 19L18 23V20Z"/>
</Svg>);
};
Icon.displayName = 'RepeatFill';
/**
* Remix Icon: Repeat Fill
* @see {@link https://remixicon.com/icon/repeat-fill Remix Icon Docs}
*/
export const RepeatFill = memo(Icon);