iconic-icons-rn
Version:
Iconic icons for React Native
10 lines (9 loc) • 758 B
JavaScript
import * as React from "react";
import Svg, { Path, Circle } from "react-native-svg";
function SvgPercentage(props) {
return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props },
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M17.25 6.75l-10.5 10.5" }),
React.createElement(Circle, { cx: 16, cy: 16, r: 1.25, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5 }),
React.createElement(Circle, { cx: 8, cy: 8, r: 1.25, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5 })));
}
export default SvgPercentage;