@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 625 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const PriceTag3Fill = /* @__PURE__ */ memo(function PriceTag3Fill(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="m10.904 2.1 9.9 1.414 1.414 9.9-9.192 9.192a1 1 0 0 1-1.415 0l-9.9-9.9a1 1 0 0 1 0-1.413zm2.829 8.486a2 2 0 1 0 2.828-2.829 2 2 0 0 0-2.828 2.829"/>
</Svg>);
});
/**
* Remix Icon: Price Tag 3 Fill
* @see {@link https://remixicon.com/icon/price-tag-3-fill Remix Icon Docs}
*/
export { PriceTag3Fill };