UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 510 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const Number4 = /* @__PURE__ */ memo(function Number4(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M16 1.5V16h3v2h-3v4h-2v-4H4v-1.102L14 1.5zM14 16V5.171L6.968 16z"/> </Svg>); }); /** * Remix Icon: Number 4 * @see {@link https://remixicon.com/icon/number-4 Remix Icon Docs} */ export { Number4 };