@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 ArrowGoBackFill = /* @__PURE__ */ memo(function ArrowGoBackFill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M8 7v4L2 6l6-5v4h5a8 8 0 1 1 0 16H4v-2h9a6 6 0 0 0 0-12z"/>
</Svg>);
});
/**
* Remix Icon: Arrow Go Back Fill
* @see {@link https://remixicon.com/icon/arrow-go-back-fill Remix Icon Docs}
*/
export { ArrowGoBackFill };