-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new(Icons): Add pie chart icon (#48)
* Add PieChart icon * Removed the fill for Pie Chart icon * Run prettier on file
- Loading branch information
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.