-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Icon): add new icons Bundle, Device, PaymentMethod, PurchaseCart…
…, PushToTalk
- Loading branch information
1 parent
5ee556d
commit c6c749c
Showing
16 changed files
with
198 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import * as React from 'react'; | ||
import { SVGProps, Ref, forwardRef, memo } from 'react'; | ||
|
||
const Bundle = memo( | ||
forwardRef((props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => ( | ||
<svg | ||
viewBox="0 0 32 32" | ||
xmlns="http://www.w3.org/2000/svg" | ||
ref={ref} | ||
{...props} | ||
> | ||
<path d="M14.658 2.553a3.001 3.001 0 0 1 2.683 0l11.105 5.553a1 1 0 0 1 0 1.788L17.34 15.447a3.001 3.001 0 0 1-2.683 0L3.551 9.894a1 1 0 0 1 0-1.788l11.106-5.553zm1.789 1.789a.998.998 0 0 0-.894 0L6.236 9l9.317 4.658a.998.998 0 0 0 .894 0L25.764 9l-9.317-4.658z" /> | ||
<path d="m11.241 13.294-5.206 2.937 9.473 5.344a1 1 0 0 0 .983 0l9.473-5.344-5.206-2.937.983-1.742 6.75 3.808a1 1 0 0 1 0 1.742l-11.017 6.215a3 3 0 0 1-2.948 0L3.509 17.102a1 1 0 0 1 0-1.742l6.75-3.808.983 1.742z" /> | ||
<path d="m6.191 22.846 4.265-2.187-.913-1.78-6 3.077a1 1 0 0 0 0 1.78l11.087 5.686a2.999 2.999 0 0 0 2.738 0l11.087-5.686a1 1 0 0 0 0-1.78l-6-3.077-.913 1.78 4.265 2.187-9.352 4.796a1 1 0 0 1-.913 0L6.19 22.846z" /> | ||
</svg> | ||
)), | ||
); | ||
Bundle.displayName = 'Bundle'; | ||
Bundle['iconName'] = 'bundle'; | ||
export default Bundle; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import * as React from 'react'; | ||
import { SVGProps, Ref, forwardRef, memo } from 'react'; | ||
|
||
const Device = memo( | ||
forwardRef((props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => ( | ||
<svg | ||
viewBox="0 0 32 32" | ||
xmlns="http://www.w3.org/2000/svg" | ||
ref={ref} | ||
{...props} | ||
> | ||
<path d="M5 4a3 3 0 0 1 3-3h4a3 3 0 0 1 3 3v1h13a3 3 0 0 1 3 3v18a3 3 0 0 1-3 3H14.829A3.001 3.001 0 0 1 12 31H8a3.001 3.001 0 0 1-2.829-2H4a3 3 0 0 1-3-3V8a3 3 0 0 1 3-3h1V4zm0 3H4a1 1 0 0 0-1 1v18a1 1 0 0 0 1 1h1V7zm10 20h13a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1H15v20zM8 3a1 1 0 0 0-1 1v24a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H8zm9 8a1 1 0 0 1 1-1h8a1 1 0 0 1 0 2h-8a1 1 0 0 1-1-1zm0 4a1 1 0 0 1 1-1h8a1 1 0 0 1 0 2h-8a1 1 0 0 1-1-1zm0 4a1 1 0 0 1 1-1h8a1 1 0 0 1 0 2h-8a1 1 0 0 1-1-1zm3 4a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1z" /> | ||
</svg> | ||
)), | ||
); | ||
Device.displayName = 'Device'; | ||
Device['iconName'] = 'device'; | ||
export default Device; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import * as React from 'react'; | ||
import { SVGProps, Ref, forwardRef, memo } from 'react'; | ||
|
||
const PaymentMethod = memo( | ||
forwardRef((props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => ( | ||
<svg | ||
viewBox="0 0 32 32" | ||
xmlns="http://www.w3.org/2000/svg" | ||
ref={ref} | ||
{...props} | ||
> | ||
<path d="M2 9a3 3 0 0 1 3-3h22a3 3 0 0 1 3 3v14a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V9zm3-1a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h22a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1H5z" /> | ||
<path d="M3 12h26v4H3v-4zM6 21a1 1 0 0 1 1-1h6a1 1 0 0 1 0 2H7a1 1 0 0 1-1-1z" /> | ||
</svg> | ||
)), | ||
); | ||
PaymentMethod.displayName = 'PaymentMethod'; | ||
PaymentMethod['iconName'] = 'payment-method'; | ||
export default PaymentMethod; |
Oops, something went wrong.