Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add AppStore icon #139

Merged
merged 1 commit into from
Sep 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@macpaw/macpaw-ui",
"version": "4.16.0",
"version": "4.16.1",
"main": "lib/ui.js",
"scripts": {
"dev": "next -p 1234",
Expand Down
15 changes: 15 additions & 0 deletions src/Icons/jsx/AppStoreIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import * as React from 'react';

const SvgAppStoreIcon = (props: React.SVGProps<SVGSVGElement>) => (
<svg xmlns="http://www.w3.org/2000/svg" width={25} height={24} viewBox="0 0 25 24" {...props}>
<g>
<path
id="Vector"
d="M15.3645 10.0644L17.519 14H21.5C22.0128 14 22.4355 14.386 22.4933 14.8834L22.5 15C22.5 15.5523 22.0523 16 21.5 16H18.614L20.7408 19.8836C21.006 20.368 20.8283 20.9757 20.3439 21.241C19.8595 21.5062 19.2517 21.3285 18.9865 20.8441L13.6102 11.0249C13.345 10.5405 13.5227 9.93276 14.0071 9.66752C14.4916 9.40229 15.0993 9.57997 15.3645 10.0644ZM6.42365 17.4465C6.6907 16.9631 7.29908 16.7877 7.78251 17.0547C8.26594 17.3218 8.44135 17.9302 8.1743 18.4136L6.82987 20.8474C6.56282 21.3308 5.95444 21.5062 5.47101 21.2392C4.98758 20.9721 4.81217 20.3637 5.07922 19.8803L6.42365 17.4465ZM14.0731 3.52797C14.3339 3.04115 14.9399 2.85792 15.4268 3.11872C15.9136 3.37952 16.0968 3.98559 15.836 4.47242L10.731 14H14.1364C14.6492 14 15.0719 14.386 15.1296 14.8834L15.1364 15C15.1364 15.5523 14.6886 16 14.1364 16H3.5C2.94772 16 2.5 15.5523 2.5 15C2.5 14.4477 2.94772 14 3.5 14H8.462L11.814 7.744L9.99109 4.48873C9.72128 4.00683 9.89321 3.39746 10.3751 3.12765C10.857 2.85784 11.4664 3.02977 11.7362 3.51166L12.935 5.652L14.0731 3.52797Z"
fillRule="nonzero"
/>
</g>
</svg>
);

export default SvgAppStoreIcon;
1 change: 1 addition & 0 deletions src/Icons/jsx/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,4 @@ export { default as StoreIcon } from './StoreIcon';
export { default as UserIcon } from './UserIcon';
export { default as WarningIcon } from './WarningIcon';
export { default as CheckCircleIcon } from './CheckCircle';
export { default as AppStoreIcon } from './AppStoreIcon';
Loading