@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 489 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Number1 = /* @__PURE__ */ memo(function Number1(_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 1.5V22h-2V3.704L7.5 4.91V2.839l5-1.339z"/>
</Svg>);
});
/**
* Remix Icon: Number 1
* @see {@link https://remixicon.com/icon/number-1 Remix Icon Docs}
*/
export { Number1 };