UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 506 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const AddLargeLine = /* @__PURE__ */ memo(function AddLargeLine(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M13 11h9v2h-9v9h-2v-9H2v-2h9V2h2z"/> </Svg>); }); /** * Remix Icon: Add Large Line * @see {@link https://remixicon.com/icon/add-large-line Remix Icon Docs} */ export { AddLargeLine };