// Generated by script, don't edit it please.
import * as React from 'react';

function PieChart(props: React.SVGProps<SVGSVGElement>, svgRef?: React.Ref<SVGSVGElement>) {
  return (
    <svg width="1em" height="1em" viewBox="0 0 14 14" fill="currentColor" ref={svgRef} {...props}>
      <path d="M7.875.937v5.188h5.188A6.13 6.13 0 007.875.937zM7 0a7 7 0 017 7H7.875A.875.875 0 017 6.125V0z" />
      <path d="M5.25.221l.218.847a6.125 6.125 0 107.464 7.464l.847.218A7 7 0 115.25.221z" />
    </svg>
  );
}

const ForwardRef = React.forwardRef(PieChart);
export default ForwardRef;
