react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 466 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgPriceTag3Fill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...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>
);
export default SvgPriceTag3Fill;