react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 590 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgPieChartLine(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M12 22C6.477 22 2 17.523 2 12c0-4.478 2.943-8.268 7-9.542v2.124A8.003 8.003 0 0012 20a8.003 8.003 0 007.418-5h2.124c-1.274 4.057-5.064 7-9.542 7zm9.95-9H11V2.05c.329-.033.663-.05 1-.05 5.523 0 10 4.477 10 10 0 .337-.017.671-.05 1zM13 4.062V11h6.938A8.004 8.004 0 0013 4.062z" />
</Svg>
);
}
export default SvgPieChartLine;