UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 673 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const ShareForwardBoxLine = /* @__PURE__ */ memo(function ShareForwardBoxLine(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M9 3v2H4v14h16v-9h2v10a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zm9.95 2L16 2.05 17.414.636l5.34 5.34A.6.6 0 0 1 22.33 7H14a2 2 0 0 0-2 2v6h-2V9a4 4 0 0 1 4-4z"/> </Svg>); }); /** * Remix Icon: Share Forward Box Line * @see {@link https://remixicon.com/icon/share-forward-box-line Remix Icon Docs} */ export { ShareForwardBoxLine };