@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 660 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 8V13C17 16.3137 14.3137 19 11 19C7.68629 19 5 16.3137 5 13V4H3V13C3 17.4183 6.58172 21 11 21C15.4183 21 19 17.4183 19 13V8H23L18 2L13 8H17Z"/>
</Svg>);
};
Icon.displayName = 'ArrowTurnForwardFill';
/**
* Remix Icon: Arrow Turn Forward Fill
* @see {@link https://remixicon.com/icon/arrow-turn-forward-fill Remix Icon Docs}
*/
export const ArrowTurnForwardFill = memo(Icon);