Skip to content

Commit

Permalink
new(Icons): Add pie chart icon (#48)
Browse files Browse the repository at this point in the history
* Add PieChart icon

* Removed the fill for Pie Chart icon

* Run prettier on file
  • Loading branch information
adamirl authored and milesj committed Apr 26, 2019
1 parent 4959b8b commit 69ba4bd
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
12 changes: 12 additions & 0 deletions packages/icons/src/general/IconPieChart.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import React from 'react';
import withIcon, { Props } from '../withIcon';

function IconPieChart(props: Props) {
return (
<svg {...props} viewBox="0 0 24 24" fill="none">
<path d="M11 2v20c-5.07-.5-9-4.79-9-10s3.93-9.5 9-10zm2.03 0v8.99H22c-.47-4.74-4.24-8.52-8.97-8.99zm0 11.01V22c4.74-.47 8.5-4.25 8.97-8.99h-8.97z" />
</svg>
);
}

export default withIcon('IconPieChart')(IconPieChart);
3 changes: 3 additions & 0 deletions svgs/general/pie-chart.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 69ba4bd

Please sign in to comment.