File tree Expand file tree Collapse file tree 3 files changed +17
-1
lines changed
Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @macpaw/macpaw-ui" ,
3- "version" : " 4.16.0 " ,
3+ "version" : " 4.16.1 " ,
44 "main" : " lib/ui.js" ,
55 "scripts" : {
66 "dev" : " next -p 1234" ,
Original file line number Diff line number Diff line change 1+ import * as React from 'react' ;
2+
3+ const SvgAppStoreIcon = ( props : React . SVGProps < SVGSVGElement > ) => (
4+ < svg xmlns = "http://www.w3.org/2000/svg" width = { 25 } height = { 24 } viewBox = "0 0 25 24" { ...props } >
5+ < g >
6+ < path
7+ id = "Vector"
8+ 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"
9+ fillRule = "nonzero"
10+ />
11+ </ g >
12+ </ svg >
13+ ) ;
14+
15+ export default SvgAppStoreIcon ;
Original file line number Diff line number Diff line change @@ -55,3 +55,4 @@ export { default as StoreIcon } from './StoreIcon';
5555export { default as UserIcon } from './UserIcon' ;
5656export { default as WarningIcon } from './WarningIcon' ;
5757export { default as CheckCircleIcon } from './CheckCircle' ;
58+ export { default as AppStoreIcon } from './AppStoreIcon' ;
You can’t perform that action at this time.
0 commit comments