iconic-icons-rn
Version:
Iconic icons for React Native
9 lines (8 loc) • 604 B
JavaScript
import * as React from "react";
import Svg, { Circle, Path } from "react-native-svg";
function SvgPieChart(props) {
return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props },
React.createElement(Circle, { cx: 12, cy: 12, r: 7.25, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5 }),
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M11.75 5v5.25a2 2 0 002 2H19" })));
}
export default SvgPieChart;