@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 637 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="M8 7V11L2 6L8 1V5H13C17.4183 5 21 8.58172 21 13C21 17.4183 17.4183 21 13 21H4V19H13C16.3137 19 19 16.3137 19 13C19 9.68629 16.3137 7 13 7H8Z"/>
</Svg>);
};
Icon.displayName = 'ArrowGoBackFill';
/**
* Remix Icon: Arrow Go Back Fill
* @see {@link https://remixicon.com/icon/arrow-go-back-fill Remix Icon Docs}
*/
export const ArrowGoBackFill = memo(Icon);