iconic-icons-rn
Version:
Iconic icons for React Native
9 lines (8 loc) • 578 B
JavaScript
import * as React from "react";
import Svg, { Circle, Path } from "react-native-svg";
function SvgTag(props) {
return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props },
React.createElement(Circle, { cx: 15, cy: 9, r: 1, fill: "currentColor" }),
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M12 4.75h7.25V12l-6.697 6.67a2 2 0 01-2.87-.047L5.29 13.94a2 2 0 01.072-2.81L12 4.75z" })));
}
export default SvgTag;