UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 566 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const Icon = memo((_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 8v5a6 6 0 0 1-12 0V4H3v9a8 8 0 1 0 16 0V8h4l-5-6-5 6z"/> </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 = Icon;