Skip to main content

chart-pie

designinterfacevector

General
react
import React from 'react';

export const ChartPie = (props) => (
  <svg {...props} xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#3b82f6" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
    <path d="M 21 12 c 0 -4.97 -4.03 -9 -9 -9 v 9 Z" fill="none" stroke="#3b82f6" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
    <path d="M 3.1 14.5 c 0.5 4.3 3.9 7.7 8.2 8.2 s 8.3 -2.2 9.2 -6.5 H 3.1 Z" fill="none" stroke="#3b82f6" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
  </svg>
);

export default ChartPie;