Skip to content

Commit

Permalink
feat(project): add menu icon component
Browse files Browse the repository at this point in the history
  • Loading branch information
RCVZ committed Apr 29, 2021
1 parent 54fc326 commit 82a066a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/icons/Menu.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import React from 'react';

import createIcon from './createIcon';

export default createIcon(
'0 0 24 24',
<g>
<path d="M0 0h24v24H0V0z" fill="none" />
<path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z" />
</g>,
);

0 comments on commit 82a066a

Please sign in to comment.