Skip to content

Commit

Permalink
feat: Add Tune icon (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chef-Cheems authored Apr 7, 2021
1 parent 7618a8b commit 54702ac
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
14 changes: 14 additions & 0 deletions packages/pancake-uikit/src/components/Svg/Icons/Tune.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import React from "react";
import Svg from "../Svg";
import { SvgProps } from "../types";

const Icon: React.FC<SvgProps> = (props) => {
return (
<Svg viewBox="0 0 24 24" {...props}>
<path d="M0 0h24v24H0z" fill="none" />
<path d="M3 17v2h6v-2H3zM3 5v2h10V5H3zm10 16v-2h8v-2h-8v-2h-2v6h2zM7 9v2H3v2h4v2h2V9H7zm14 4v-2H11v2h10zm-6-4h2V7h4V5h-4V3h-2v6z" />
</Svg>
);
};

export default Icon;
1 change: 1 addition & 0 deletions packages/pancake-uikit/src/components/Svg/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ export { default as Ticket } from "./Icons/Ticket";
export { default as TicketRound } from "./Icons/TicketRound";
export { default as TimerIcon } from "./Icons/Timer";
export { default as TrophyGoldIcon } from "./Icons/TrophyGold";
export { default as TuneIcon } from "./Icons/Tune";
export { default as SearchIcon } from "./Icons/Search";
export { default as SwapVertIcon } from "./Icons/SwapVert";
export { default as SyncAltIcon } from "./Icons/SyncAlt";
Expand Down

0 comments on commit 54702ac

Please sign in to comment.