@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 629 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Hashtag = /* @__PURE__ */ memo(function Hashtag(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="m7.784 14 .42-4H4V8h4.415l.525-5h2.011l-.525 5h3.989l.525-5h2.011l-.525 5H20v2h-3.784l-.42 4H20v2h-4.415l-.525 5h-2.011l.525-5H9.585l-.525 5H7.049l.525-5H4v-2zm2.011 0h3.99l.42-4h-3.99z"/>
</Svg>);
});
/**
* Remix Icon: Hashtag
* @see {@link https://remixicon.com/icon/hashtag Remix Icon Docs}
*/
export { Hashtag };