Skip to content

Commit

Permalink
Add Microsoft Outlook icon
Browse files Browse the repository at this point in the history
  • Loading branch information
JeanTinland committed Oct 15, 2024
1 parent 01a6223 commit 2675f71
Show file tree
Hide file tree
Showing 3 changed files with 15 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 @@ -101,6 +101,7 @@ export const apps = {
Messages: Icons.Messages,
"Microsoft Edge": Icons.MicrosoftEdge,
"Microsoft Excel": Icons.MicrosoftExcel,
"Microsoft Outlook": Icons.MicrosoftOutlook,
"Microsoft PowerPoint": Icons.MicrosoftPowerPoint,
"Microsoft Teams": Icons.Teams,
"Microsoft To Do": Icons.Things,
Expand Down
3 changes: 3 additions & 0 deletions lib/components/icons/icons.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,9 @@ export const MicrosoftEdge = React.lazy(() =>
export const MicrosoftExcel = React.lazy(() =>
import("./library/microsoft-excel.jsx")
);
export const MicrosoftOutlook = React.lazy(() =>
import("./library/microsoft-outlook.jsx")
);
export const MicrosoftPowerPoint = React.lazy(() =>
import("./library/microsoft-power-point.jsx")
);
Expand Down
11 changes: 11 additions & 0 deletions lib/components/icons/library/microsoft-outlook.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import Icon from "../icon.jsx";

export default function MicrosoftOutlook(props) {
return (
<Icon {...props}>
<path d="M14.9434 5.1811v4.632l1.6203 1.019a.4124.4124 0 0 0 .1776 0l6.9669-4.697a.9929.9929 0 0 0-.811-.954h-7.9538Z" />
<path d="m14.9432 11.5409 1.4775 1.0148a.4406.4406 0 0 0 .4592 0c-.2537.1531 6.8273-4.5481 6.8273-4.5481v8.5128a1.1915 1.1915 0 0 1-.7518 1.2363 1.1902 1.1902 0 0 1-.5083.0788h-7.5047l.0008-6.2946ZM7.2947 9.4053a1.3608 1.3608 0 0 0-1.2009.7087 3.4938 3.4938 0 0 0-.4448 1.8758 3.4252 3.4252 0 0 0 .4448 1.8707 1.3533 1.3533 0 0 0 1.8443.5098 1.3532 1.3532 0 0 0 .4992-.4912 3.3949 3.3949 0 0 0 .4355-1.8606 3.6948 3.6948 0 0 0-.4228-1.929 1.299 1.299 0 0 0-1.1553-.6842Z" />
<path d="M.2861 2.8283v18.1209l13.785 2.8906V.1602L.2861 2.8283Zm9.225 12.124a2.7326 2.7326 0 0 1-2.2835 1.151 2.6985 2.6985 0 0 1-2.2326-1.1146 4.6167 4.6167 0 0 1-.8584-2.9042 4.9626 4.9626 0 0 1 .8762-3.058A2.7629 2.7629 0 0 1 7.3334 7.856a2.6352 2.6352 0 0 1 2.2072 1.1172 4.7685 4.7685 0 0 1 .8457 2.9464 4.8736 4.8736 0 0 1-.8753 3.0327Z" />
</Icon>
);
}

0 comments on commit 2675f71

Please sign in to comment.