UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 488 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const CrossFill = /* @__PURE__ */ memo(function CrossFill(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M14 2h-4v6H4v4h6v10h4V12h6V8h-6z"/> </Svg>); }); /** * Remix Icon: Cross Fill * @see {@link https://remixicon.com/icon/cross-fill Remix Icon Docs} */ export { CrossFill };