UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 648 B
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="M16 7H11C7.68629 7 5 9.68629 5 13C5 16.3137 7.68629 19 11 19H20V21H11C6.58172 21 3 17.4183 3 13C3 8.58172 6.58172 5 11 5H16V1L22 6L16 11V7Z"/> </Svg>); }; Icon.displayName = 'ArrowGoForwardFill'; /** * Remix Icon: Arrow Go Forward Fill * @see {@link https://remixicon.com/icon/arrow-go-forward-fill Remix Icon Docs} */ export const ArrowGoForwardFill = memo(Icon);