Skip to content

Commit

Permalink
Merge pull request #420 from cjnewco/copilot-icon
Browse files Browse the repository at this point in the history
Copilot Money icon
  • Loading branch information
Jean-Tinland authored Sep 25, 2024
2 parents d6884ec + dd773d1 commit 01a6223
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/app-icons.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export const apps = {
"Code - Insiders": Icons.Code,
Code: Icons.Code,
"Color Picker": Icons.ColorPicker,
Copilot: Icons.Copilot,
DataGrip: Icons.DataGrip,
Deezer: Icons.Deezer,
Default: Icons.Default,
Expand Down
1 change: 1 addition & 0 deletions lib/components/icons/icons.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ export const Coffee = React.lazy(() => import("./library/coffee.jsx"));
export const ColorPicker = React.lazy(() =>
import("./library/color-picker.jsx")
);
export const Copilot = React.lazy(() => import("./library/copilot.jsx"));
export const CPU = React.lazy(() => import("./library/cp-u.jsx"));
export const DataGrip = React.lazy(() => import("./library/data-grip.jsx"));
export const Date = React.lazy(() => import("./library/date.jsx"));
Expand Down
9 changes: 9 additions & 0 deletions lib/components/icons/library/copilot.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import Icon from "../icon.jsx";

export default function Copilot(props) {
return (
<Icon {...props}>
<path d="M22.961.394a.5.5 0 0 1 .645.645l-8.264 21.786a.5.5 0 0 1-.929.015l-3.58-8.591a.5.5 0 0 0-.251-.262l-9.5-4.384a.5.5 0 0 1 .032-.922L22.96.394Z"/>
</Icon>
);
}

0 comments on commit 01a6223

Please sign in to comment.