@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 561 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const ArrowTurnBackFill = /* @__PURE__ */ memo(function ArrowTurnBackFill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M17 16h-4l5 6 5-6h-4v-5a8 8 0 1 0-16 0v9h2v-9a6 6 0 1 1 12 0z"/>
</Svg>);
});
/**
* Remix Icon: Arrow Turn Back Fill
* @see {@link https://remixicon.com/icon/arrow-turn-back-fill Remix Icon Docs}
*/
export { ArrowTurnBackFill };