@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 647 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="M17 16H13L18 22L23 16H19V11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11V20H5V11C5 7.68629 7.68629 5 11 5C14.3137 5 17 7.68629 17 11V16Z"/>
</Svg>);
};
Icon.displayName = 'ArrowTurnBackFill';
/**
* Remix Icon: Arrow Turn Back Fill
* @see {@link https://remixicon.com/icon/arrow-turn-back-fill Remix Icon Docs}
*/
export const ArrowTurnBackFill = memo(Icon);