@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 506 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const AddLargeFill = /* @__PURE__ */ memo(function AddLargeFill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M11 11V2h2v9h9v2h-9v9h-2v-9H2v-2z"/>
</Svg>);
});
/**
* Remix Icon: Add Large Fill
* @see {@link https://remixicon.com/icon/add-large-fill Remix Icon Docs}
*/
export { AddLargeFill };