UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 581 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.172 11-4.657-4.657 1.414-1.414L21 12l-7.071 7.071-1.414-1.414L17.172 13H8v-2zM4 19V5h2v14z"/> </Svg>); }); Icon.displayName = 'ExpandRightLine'; /** * Remix Icon: Expand Right Line * @see {@link https://remixicon.com/icon/expand-right-line Remix Icon Docs} */ export const ExpandRightLine = Icon;