@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 502 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const ArrowLeftFill = /* @__PURE__ */ memo(function ArrowLeftFill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M12 13v7l-8-8 8-8v7h8v2z"/>
</Svg>);
});
/**
* Remix Icon: Arrow Left Fill
* @see {@link https://remixicon.com/icon/arrow-left-fill Remix Icon Docs}
*/
export { ArrowLeftFill };