@7shifts/sous-chef 4.2.0 → 4.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/SevenShiftsLogo/SevenShiftsLogo.d.ts +3 -0
- package/dist/assets/SevenShiftsLogo/index.d.ts +1 -0
- package/dist/assets/SevenShiftsShortLogo/SevenShiftsShortLogo.d.ts +3 -0
- package/dist/assets/SevenShiftsShortLogo/index.d.ts +1 -0
- package/dist/foundation/tokens/color/color-constants.d.ts +1 -0
- package/dist/foundation/tokens/color/color-types.d.ts +1 -1
- package/dist/hooks/useScrollDetector.d.ts +5 -0
- package/dist/index.css +253 -1
- package/dist/index.css.map +1 -1
- package/dist/index.js +2553 -2160
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2748 -2348
- package/dist/index.modern.js.map +1 -1
- package/dist/navigation/PrimaryNav/PrimaryNav.d.ts +13 -0
- package/dist/navigation/PrimaryNav/PrimaryNavContext.d.ts +16 -0
- package/dist/navigation/PrimaryNav/PrimaryNavHeader/PrimaryNavHeader.d.ts +8 -0
- package/dist/navigation/PrimaryNav/PrimaryNavHeader/index.d.ts +1 -0
- package/dist/navigation/PrimaryNav/index.d.ts +1 -0
- package/dist/navigation/PrimaryNavDivider/PrimaryNavDivider.d.ts +3 -0
- package/dist/navigation/PrimaryNavDivider/index.d.ts +1 -0
- package/dist/navigation/PrimaryNavFooter/PrimaryNavFooter.d.ts +6 -0
- package/dist/navigation/PrimaryNavFooter/index.d.ts +1 -0
- package/dist/navigation/PrimaryNavItem/PrimaryNavItem.d.ts +12 -0
- package/dist/navigation/PrimaryNavItem/PrimaryNavItemBadge/PrimaryNavItemBadge.d.ts +9 -0
- package/dist/navigation/PrimaryNavItem/PrimaryNavItemBadge/index.d.ts +1 -0
- package/dist/navigation/PrimaryNavItem/index.d.ts +1 -0
- package/dist/navigation/PrimaryNavSubItem/PrimaryNavSubItem.d.ts +11 -0
- package/dist/navigation/PrimaryNavSubItem/index.d.ts +1 -0
- package/dist/navigation/index.d.ts +6 -1
- package/dist/utils/actions.d.ts +1 -1
- package/llms-instructions/llms-components.md +425 -0
- package/llms-instructions/llms-composing-components.md +502 -0
- package/llms-instructions/llms-icons-and-illustrations.md +1039 -0
- package/llms-instructions/llms-tokens.md +397 -0
- package/llms-instructions/llms.md +78 -0
- package/package.json +3 -2
|
@@ -0,0 +1,1039 @@
|
|
|
1
|
+
# Sous Chef Design System - Icons and Illustrations
|
|
2
|
+
|
|
3
|
+
In Sous Chef, icons and ink illustrations are treated as normal React components.
|
|
4
|
+
|
|
5
|
+
Example:
|
|
6
|
+
|
|
7
|
+
```tsx
|
|
8
|
+
import { IconPencil, InkLockLocked } from '@7shifts/sous-chef';
|
|
9
|
+
|
|
10
|
+
<IconPencil />
|
|
11
|
+
<InkLockLocked />
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Icons
|
|
15
|
+
|
|
16
|
+
Icons can be used in isolation, but they can also be used with other components, for example, the `Button` component:
|
|
17
|
+
|
|
18
|
+
Example:
|
|
19
|
+
|
|
20
|
+
```tsx
|
|
21
|
+
<Button>
|
|
22
|
+
<IconPencil />
|
|
23
|
+
Edit
|
|
24
|
+
</Button>
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Note that, in this case, you DON'T need to use the `Inline` component to align the icon with the text. Also, the icon size is inferred by the `Button` component.
|
|
28
|
+
|
|
29
|
+
But when used in isolation, then you need to provide the `size` if you need a different size. The default size is `default` which computes to `20px`.
|
|
30
|
+
|
|
31
|
+
Example:
|
|
32
|
+
|
|
33
|
+
```tsx
|
|
34
|
+
<Card>
|
|
35
|
+
<IconPencil size="large" />
|
|
36
|
+
</Card>
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
All icons have two variants: outline (default) and solid. You can change that by setting the `variant` prop.
|
|
40
|
+
|
|
41
|
+
Available icon components:
|
|
42
|
+
|
|
43
|
+
### Arrows
|
|
44
|
+
|
|
45
|
+
- IconArrowDown
|
|
46
|
+
- IconArrowDownWideShort
|
|
47
|
+
- IconArrowLeft
|
|
48
|
+
- IconArrowRight
|
|
49
|
+
- IconArrowToTop
|
|
50
|
+
- IconArrowTurnDownRight
|
|
51
|
+
- IconArrowUp
|
|
52
|
+
- IconChevronDown
|
|
53
|
+
- IconChevronLeft
|
|
54
|
+
- IconChevronRight
|
|
55
|
+
- IconChevronUp
|
|
56
|
+
- IconExpand
|
|
57
|
+
- IconRepeat
|
|
58
|
+
- IconReply
|
|
59
|
+
- IconSort
|
|
60
|
+
- IconSync
|
|
61
|
+
- IconSyncExclamation
|
|
62
|
+
- IconUndo
|
|
63
|
+
|
|
64
|
+
### Business
|
|
65
|
+
|
|
66
|
+
- IconAnalytics
|
|
67
|
+
- IconBalanceScale
|
|
68
|
+
- IconBalanceScaleLeft
|
|
69
|
+
- IconBarsV
|
|
70
|
+
- IconBook
|
|
71
|
+
- IconCalculator
|
|
72
|
+
- IconCashRegister
|
|
73
|
+
- IconChartBar
|
|
74
|
+
- IconCreditCard
|
|
75
|
+
- IconCreditCardPlus
|
|
76
|
+
- IconDollarSign
|
|
77
|
+
- IconEnvelopeOpenDollar
|
|
78
|
+
- IconGanttChart
|
|
79
|
+
- IconHandHoldingCoin
|
|
80
|
+
- IconHandHoldingDollar
|
|
81
|
+
- IconMoneyBill
|
|
82
|
+
- IconPercentage
|
|
83
|
+
- IconSitemap
|
|
84
|
+
- IconTable
|
|
85
|
+
|
|
86
|
+
### Communication
|
|
87
|
+
|
|
88
|
+
- IconBell
|
|
89
|
+
- IconBullhorn
|
|
90
|
+
- IconCamera
|
|
91
|
+
- IconCameraSlash
|
|
92
|
+
- IconComment
|
|
93
|
+
- IconCommentLines
|
|
94
|
+
- IconEnvelope
|
|
95
|
+
- IconMessages
|
|
96
|
+
- IconMicrophone
|
|
97
|
+
- IconMobile
|
|
98
|
+
- IconPhone
|
|
99
|
+
- IconVideo
|
|
100
|
+
- IconWifi
|
|
101
|
+
- IconWifiSlash
|
|
102
|
+
|
|
103
|
+
### Controls
|
|
104
|
+
|
|
105
|
+
- IconBarsH
|
|
106
|
+
- IconBold
|
|
107
|
+
- IconCheckCircle
|
|
108
|
+
- IconCog
|
|
109
|
+
- IconCopy
|
|
110
|
+
- IconEdit
|
|
111
|
+
- IconEllipsis
|
|
112
|
+
- IconEllipsisV
|
|
113
|
+
- IconExternalLink
|
|
114
|
+
- IconEye
|
|
115
|
+
- IconEyeSlash
|
|
116
|
+
- IconFile
|
|
117
|
+
- IconGripVertical
|
|
118
|
+
- IconHouse
|
|
119
|
+
- IconImage
|
|
120
|
+
- IconItalic
|
|
121
|
+
- IconLink
|
|
122
|
+
- IconList
|
|
123
|
+
- IconListOl
|
|
124
|
+
- IconLock
|
|
125
|
+
- IconMemoMagnifyingGlass
|
|
126
|
+
- IconMinus
|
|
127
|
+
- IconMinusCircle
|
|
128
|
+
- IconPaperPlane
|
|
129
|
+
- IconPaperPlaneClock
|
|
130
|
+
- IconPaperclip
|
|
131
|
+
- IconPencil
|
|
132
|
+
- IconPlus
|
|
133
|
+
- IconPrint
|
|
134
|
+
- IconSearch
|
|
135
|
+
- IconSignIn
|
|
136
|
+
- IconSignOut
|
|
137
|
+
- IconSlidersH
|
|
138
|
+
- IconSortChevron
|
|
139
|
+
- IconSortChevronDown
|
|
140
|
+
- IconSortChevronUp
|
|
141
|
+
- IconStrikethrough
|
|
142
|
+
- IconTimes
|
|
143
|
+
- IconTrash
|
|
144
|
+
- IconUnderline
|
|
145
|
+
- IconUnlock
|
|
146
|
+
- IconVolume
|
|
147
|
+
- IconVolumeMute
|
|
148
|
+
- IconWrench
|
|
149
|
+
|
|
150
|
+
### Emojis
|
|
151
|
+
|
|
152
|
+
- IconAwful
|
|
153
|
+
- IconAwfulMonochromatic
|
|
154
|
+
- IconBad
|
|
155
|
+
- IconBadMonochromatic
|
|
156
|
+
- IconDecent
|
|
157
|
+
- IconDecentMonochromatic
|
|
158
|
+
- IconGood
|
|
159
|
+
- IconGoodMonochromatic
|
|
160
|
+
- IconGreat
|
|
161
|
+
- IconGreatMonochromatic
|
|
162
|
+
|
|
163
|
+
### Human
|
|
164
|
+
|
|
165
|
+
- IconAddressBook
|
|
166
|
+
- IconFaceSmileRelaxed
|
|
167
|
+
- IconFileUser
|
|
168
|
+
- IconGrinBeam
|
|
169
|
+
- IconHand
|
|
170
|
+
- IconHandPointRight
|
|
171
|
+
- IconHandshake
|
|
172
|
+
- IconStar
|
|
173
|
+
- IconThumbsDown
|
|
174
|
+
- IconThumbsUp
|
|
175
|
+
- IconUser
|
|
176
|
+
- IconUserComputer
|
|
177
|
+
- IconUserFriends
|
|
178
|
+
- IconUserPlus
|
|
179
|
+
- IconUserSearch
|
|
180
|
+
- IconUserSlash
|
|
181
|
+
- IconUserTag
|
|
182
|
+
- IconUserTie
|
|
183
|
+
- IconUsers
|
|
184
|
+
|
|
185
|
+
### Image
|
|
186
|
+
|
|
187
|
+
- IconBirthdayCake
|
|
188
|
+
- IconBolt
|
|
189
|
+
- IconBriefcase
|
|
190
|
+
- IconBullseyeArrow
|
|
191
|
+
- IconClipboardList
|
|
192
|
+
- IconDownload
|
|
193
|
+
- IconFilePdf
|
|
194
|
+
- IconFlag
|
|
195
|
+
- IconFourDotsCircle
|
|
196
|
+
- IconFourSquares
|
|
197
|
+
- IconGavel
|
|
198
|
+
- IconGif
|
|
199
|
+
- IconGift
|
|
200
|
+
- IconGlobe
|
|
201
|
+
- IconHatChef
|
|
202
|
+
- IconIslandTropical
|
|
203
|
+
- IconLaptopSearch
|
|
204
|
+
- IconMagic
|
|
205
|
+
- IconMapMarker
|
|
206
|
+
- IconMedal
|
|
207
|
+
- IconMugSaucer
|
|
208
|
+
- IconNotesMedical
|
|
209
|
+
- IconPlateUtensils
|
|
210
|
+
- IconPlug
|
|
211
|
+
- IconRocket
|
|
212
|
+
- IconSparkle
|
|
213
|
+
- IconStickyNoteLines
|
|
214
|
+
- IconStore
|
|
215
|
+
- IconTachometer
|
|
216
|
+
- IconThreeSquares
|
|
217
|
+
- IconUniversity
|
|
218
|
+
|
|
219
|
+
### Status
|
|
220
|
+
|
|
221
|
+
- IconAward
|
|
222
|
+
- IconAwardSimple
|
|
223
|
+
- IconBan
|
|
224
|
+
- IconCheck
|
|
225
|
+
- IconCheckCircleIncomplete
|
|
226
|
+
- IconCheckCircleIncompleteRole
|
|
227
|
+
- IconCheckCircleIncompleteUser
|
|
228
|
+
- IconCircleHalfStroke
|
|
229
|
+
- IconCircleXMark
|
|
230
|
+
- IconDeleteLeft
|
|
231
|
+
- IconExclamation
|
|
232
|
+
- IconExclamationTriangle
|
|
233
|
+
- IconInfoCircle
|
|
234
|
+
- IconQuestionCircle
|
|
235
|
+
- IconTimesOctagon
|
|
236
|
+
|
|
237
|
+
### Time
|
|
238
|
+
|
|
239
|
+
- IconCalendar
|
|
240
|
+
- IconCalendarAlt
|
|
241
|
+
- IconCalendarCheck
|
|
242
|
+
- IconCalendarDay
|
|
243
|
+
- IconCalendarExclamation
|
|
244
|
+
- IconCalendarStar
|
|
245
|
+
- IconCalendarWeek
|
|
246
|
+
- IconClock
|
|
247
|
+
- IconClockExclamation
|
|
248
|
+
- IconClockRewind
|
|
249
|
+
- IconOvertime
|
|
250
|
+
- IconStopwatch
|
|
251
|
+
|
|
252
|
+
## Ink Illustrations
|
|
253
|
+
|
|
254
|
+
Ink illustrations are a more detailed form of media that can be used at larger sizes than icons. They are usually used for empty states, first-time user experiences, wizards, and other areas.
|
|
255
|
+
It can also be used in cards or containers with a solid color, and can be used in bento layouts as well.
|
|
256
|
+
|
|
257
|
+
Ink illustrations are monochromatic, which means they are black in light mode and become white in dark mode, unless the `color` prop is set.
|
|
258
|
+
|
|
259
|
+
Available Ink Illustrations:
|
|
260
|
+
|
|
261
|
+
### Art
|
|
262
|
+
|
|
263
|
+
- InkArtistHat
|
|
264
|
+
- InkArtistPainting
|
|
265
|
+
- InkBrushCup
|
|
266
|
+
- InkBrush
|
|
267
|
+
- InkColorPalette
|
|
268
|
+
- InkContemporaryArtAbstract
|
|
269
|
+
- InkDrawingPalette
|
|
270
|
+
- InkHandDrawingWithPencil
|
|
271
|
+
- InkMural
|
|
272
|
+
- InkMuseumPainting
|
|
273
|
+
- InkMuseumSculpture
|
|
274
|
+
- InkPaintTin
|
|
275
|
+
- InkPottery
|
|
276
|
+
- InkSculptureCarvingChisel
|
|
277
|
+
- InkShapes
|
|
278
|
+
- InkSprayPaintCan
|
|
279
|
+
|
|
280
|
+
### Business
|
|
281
|
+
|
|
282
|
+
- InkBriefcase
|
|
283
|
+
- InkCallToActionButtons
|
|
284
|
+
- InkCoinUsDollar
|
|
285
|
+
- InkGlobalInternational
|
|
286
|
+
- InkKey
|
|
287
|
+
- InkLightBulb
|
|
288
|
+
- InkLockLocked
|
|
289
|
+
- InkMagnet
|
|
290
|
+
- InkNotepadWithArrow
|
|
291
|
+
- InkPieChartRevenue
|
|
292
|
+
- InkQuestionAnswerChat
|
|
293
|
+
- InkRoadmap
|
|
294
|
+
- InkShoppingCart
|
|
295
|
+
- InkTarget
|
|
296
|
+
- InkWebsiteOnMonitor
|
|
297
|
+
- InkWritingPen
|
|
298
|
+
|
|
299
|
+
### Cooking
|
|
300
|
+
|
|
301
|
+
- InkBakingMold
|
|
302
|
+
- InkBlender
|
|
303
|
+
- InkBowl
|
|
304
|
+
- InkChefHat
|
|
305
|
+
- InkCookbook
|
|
306
|
+
- InkCookingTongs
|
|
307
|
+
- InkCuttingBoard
|
|
308
|
+
- InkDicer
|
|
309
|
+
- InkExtractorHood
|
|
310
|
+
- InkFryingPanEggs
|
|
311
|
+
- InkIceMold
|
|
312
|
+
- InkKitchenApron
|
|
313
|
+
- InkKnife
|
|
314
|
+
- InkLadle
|
|
315
|
+
- InkMasher
|
|
316
|
+
- InkMeasuringJug
|
|
317
|
+
- InkMicrowaveOven
|
|
318
|
+
- InkMixer
|
|
319
|
+
- InkMixingIngredients
|
|
320
|
+
- InkOliveOil
|
|
321
|
+
- InkOvenGlove
|
|
322
|
+
- InkOven
|
|
323
|
+
- InkPot
|
|
324
|
+
- InkRoller
|
|
325
|
+
- InkSaltShaker
|
|
326
|
+
- InkSauceBottle
|
|
327
|
+
- InkSaucePan
|
|
328
|
+
- InkSpatula
|
|
329
|
+
- InkStrainer
|
|
330
|
+
- InkTeaPot
|
|
331
|
+
- InkToaster
|
|
332
|
+
- InkWhisk
|
|
333
|
+
|
|
334
|
+
### Design
|
|
335
|
+
|
|
336
|
+
- Ink3DModeling02
|
|
337
|
+
- Ink3DPrinting
|
|
338
|
+
- InkAppFolder
|
|
339
|
+
- InkApps
|
|
340
|
+
- InkBigboard
|
|
341
|
+
- InkBookletBrochure
|
|
342
|
+
- InkBoxInUnfoldedForm
|
|
343
|
+
- InkColorProfileCmyk
|
|
344
|
+
- InkCube
|
|
345
|
+
- InkCutScissors
|
|
346
|
+
- InkDeadline
|
|
347
|
+
- InkDesignSketchOfClothes
|
|
348
|
+
- InkDrawingOnGraphicTablet
|
|
349
|
+
- InkEmbroidery
|
|
350
|
+
- InkEyedropperWithColorPalette
|
|
351
|
+
- InkFocusEyeHidden
|
|
352
|
+
- InkGraphicFileGalleryFrame
|
|
353
|
+
- InkGuidelineBrandBook
|
|
354
|
+
- InkInteriorDesignHouseBlueprintPaperPlan
|
|
355
|
+
- InkLabelDesign
|
|
356
|
+
- InkLandscapeDesign
|
|
357
|
+
- InkLayers
|
|
358
|
+
- InkMagazine
|
|
359
|
+
- InkMagicStick
|
|
360
|
+
- InkMobileMockup
|
|
361
|
+
- InkOnlineMeeting
|
|
362
|
+
- InkOverlapOverlayIntersectionOpacity
|
|
363
|
+
- InkPacManWithCursor
|
|
364
|
+
- InkPaletteForDrawing
|
|
365
|
+
- InkPenCurves
|
|
366
|
+
- InkPenToolCursorWithBeziers
|
|
367
|
+
- InkPencil
|
|
368
|
+
- InkProtractorRuler
|
|
369
|
+
- InkRuler
|
|
370
|
+
- InkScaleToolCrop
|
|
371
|
+
- InkSearch
|
|
372
|
+
- InkSettings
|
|
373
|
+
- InkStickerSmileEmoji
|
|
374
|
+
- InkTShirtPrinting
|
|
375
|
+
- InkTabletMockup
|
|
376
|
+
- InkTextToolFont
|
|
377
|
+
- InkTransparentBackground
|
|
378
|
+
- InkWebBrowsing1
|
|
379
|
+
- InkWebBrowsing2
|
|
380
|
+
- InkWebUiElementImageSettings
|
|
381
|
+
|
|
382
|
+
### Education
|
|
383
|
+
|
|
384
|
+
- InkAcademicCap
|
|
385
|
+
- InkAudioBook
|
|
386
|
+
- InkBlackboard
|
|
387
|
+
- InkBookSearch
|
|
388
|
+
- InkBookShelf
|
|
389
|
+
- InkBook
|
|
390
|
+
- InkBrainLearn
|
|
391
|
+
- InkCheckMark
|
|
392
|
+
- InkCrossMark
|
|
393
|
+
- InkDiplomaCertificate
|
|
394
|
+
- InkGlobe
|
|
395
|
+
- InkLanguage
|
|
396
|
+
- InkMedal
|
|
397
|
+
- InkNoteBook
|
|
398
|
+
- InkProjector
|
|
399
|
+
- InkTestExamGrades
|
|
400
|
+
|
|
401
|
+
### Emojis
|
|
402
|
+
|
|
403
|
+
- InkAngryFace
|
|
404
|
+
- InkAstonishedFace
|
|
405
|
+
- InkBeamingFaceWithSmilingEyes
|
|
406
|
+
- InkFaceBlowingKiss
|
|
407
|
+
- InkFaceWithTearsOfJoy
|
|
408
|
+
- InkGrimacingFace
|
|
409
|
+
- InkPleadingFace
|
|
410
|
+
- InkSleepingFace
|
|
411
|
+
- InkSmilingFaceWithGlasses
|
|
412
|
+
- InkSmilingFaceWithHeartEyes
|
|
413
|
+
- InkSmilingFaceWithHearts
|
|
414
|
+
- InkSmilingFaceWithSunglasses
|
|
415
|
+
- InkSmilingFaceWithTear
|
|
416
|
+
- InkSmirkingFace
|
|
417
|
+
- InkThinkingFace
|
|
418
|
+
- InkWinkingFaceWithTongue
|
|
419
|
+
|
|
420
|
+
### Entertainment
|
|
421
|
+
|
|
422
|
+
- Ink3DGlasses
|
|
423
|
+
- InkAmusementPark
|
|
424
|
+
- InkBallet
|
|
425
|
+
- InkBowling
|
|
426
|
+
- InkCardGames
|
|
427
|
+
- InkCarouselWithHorses
|
|
428
|
+
- InkDiscoBall
|
|
429
|
+
- InkDj
|
|
430
|
+
- InkFirecracker
|
|
431
|
+
- InkJoystick
|
|
432
|
+
- InkMagicTricks
|
|
433
|
+
- InkMascarade
|
|
434
|
+
- InkNotesChart
|
|
435
|
+
- InkRollerSkating
|
|
436
|
+
- InkSlotMachine
|
|
437
|
+
- InkTheatre
|
|
438
|
+
|
|
439
|
+
### Food
|
|
440
|
+
|
|
441
|
+
- InkAvocado
|
|
442
|
+
- InkBeverageCola
|
|
443
|
+
- InkBreadToast
|
|
444
|
+
- InkBurger
|
|
445
|
+
- InkCabbage
|
|
446
|
+
- InkCandy
|
|
447
|
+
- InkCarrot
|
|
448
|
+
- InkCheese
|
|
449
|
+
- InkCoctailTropical
|
|
450
|
+
- InkCoffeeCupTakeaway
|
|
451
|
+
- InkCoffeeCup
|
|
452
|
+
- InkCrayfish
|
|
453
|
+
- InkCroissant
|
|
454
|
+
- InkCupcake
|
|
455
|
+
- InkDonut
|
|
456
|
+
- InkEggSunnySide
|
|
457
|
+
- InkFrenchFries
|
|
458
|
+
- InkFruitBowl
|
|
459
|
+
- InkGrapes
|
|
460
|
+
- InkHotDog
|
|
461
|
+
- InkIceCream
|
|
462
|
+
- InkLunchBag
|
|
463
|
+
- InkMatcha
|
|
464
|
+
- InkMilkCarton
|
|
465
|
+
- InkNoodlesWok
|
|
466
|
+
- InkPepper
|
|
467
|
+
- InkPizzaSlice
|
|
468
|
+
- InkSoup
|
|
469
|
+
- InkSteak
|
|
470
|
+
- InkSushi
|
|
471
|
+
- InkTaco
|
|
472
|
+
- InkWatermelon
|
|
473
|
+
|
|
474
|
+
### Gardening
|
|
475
|
+
|
|
476
|
+
- InkBirdHouse
|
|
477
|
+
- InkGardenFence
|
|
478
|
+
- InkGardenScissors
|
|
479
|
+
- InkGardenShovel
|
|
480
|
+
- InkGardeningFork
|
|
481
|
+
- InkLawnmower
|
|
482
|
+
- InkPlantPot1
|
|
483
|
+
- InkPlantPot2
|
|
484
|
+
- InkPlantPot3
|
|
485
|
+
- InkPlantPot4
|
|
486
|
+
- InkPlantPot5
|
|
487
|
+
- InkPlantPot6
|
|
488
|
+
- InkRakes
|
|
489
|
+
- InkSeeds
|
|
490
|
+
- InkWateringCan
|
|
491
|
+
- InkWateringHose
|
|
492
|
+
|
|
493
|
+
### Hands
|
|
494
|
+
|
|
495
|
+
- InkCrossedFingers
|
|
496
|
+
- InkFingerSnap
|
|
497
|
+
- InkFingerWalking
|
|
498
|
+
- InkFistRaised
|
|
499
|
+
- InkHandMeasuringHorizontally
|
|
500
|
+
- InkHandMeasuringVertically
|
|
501
|
+
- InkHandMeditationGesture
|
|
502
|
+
- InkHandRaised
|
|
503
|
+
- InkHandSignCall
|
|
504
|
+
- InkHandSignChill
|
|
505
|
+
- InkHandSignHalfHeartLeft
|
|
506
|
+
- InkHandSignLittle
|
|
507
|
+
- InkHandSignRock
|
|
508
|
+
- InkHandSignStop
|
|
509
|
+
- InkHandThreeFingers
|
|
510
|
+
- InkHandVictoryLeftHand
|
|
511
|
+
- InkHandVictoryRightHand
|
|
512
|
+
- InkHandVulcanSalute
|
|
513
|
+
- InkHandWaving
|
|
514
|
+
- InkHandWithCamera
|
|
515
|
+
- InkHandWithCards
|
|
516
|
+
- InkHandWithChopsticks
|
|
517
|
+
- InkHandWithCigarette
|
|
518
|
+
- InkHandWithCoins
|
|
519
|
+
- InkHandWithCreditCard
|
|
520
|
+
- InkHandWithCup
|
|
521
|
+
- InkHandWithDiamonds
|
|
522
|
+
- InkHandWithDices
|
|
523
|
+
- InkHandWithGem
|
|
524
|
+
- InkHandWithGift
|
|
525
|
+
- InkHandWithGlass
|
|
526
|
+
- InkHandWithMagicWand
|
|
527
|
+
- InkHandWithPaletteknifePainting
|
|
528
|
+
- InkHandWithPencilDrawing
|
|
529
|
+
- InkHandWithPhone
|
|
530
|
+
- InkHandWithPuzzle
|
|
531
|
+
- InkHandWithRose
|
|
532
|
+
- InkHandWithSeedsPlanting
|
|
533
|
+
- InkHandWithSmartPen
|
|
534
|
+
- InkHandWithSpray
|
|
535
|
+
- InkHandWithToothBrush
|
|
536
|
+
- InkHandWithWatches
|
|
537
|
+
- InkHandWithWipingCloth
|
|
538
|
+
- InkIndexPointingDown
|
|
539
|
+
- InkMakingPhotoOnPhone
|
|
540
|
+
- InkPushingButton
|
|
541
|
+
- InkThumbBackDirection
|
|
542
|
+
- InkThumbsUp
|
|
543
|
+
|
|
544
|
+
### Health
|
|
545
|
+
|
|
546
|
+
- InkAmbulance
|
|
547
|
+
- InkBandAid
|
|
548
|
+
- InkBloodBagForTransfusion
|
|
549
|
+
- InkCardiogramMonitor
|
|
550
|
+
- InkCrutches
|
|
551
|
+
- InkDiagnosisDocument
|
|
552
|
+
- InkDigitalThermometer
|
|
553
|
+
- InkDropperContainer
|
|
554
|
+
- InkEar
|
|
555
|
+
- InkEyeDropper
|
|
556
|
+
- InkFaceMask
|
|
557
|
+
- InkHeadMirror
|
|
558
|
+
- InkHospitalBed
|
|
559
|
+
- InkInhaler
|
|
560
|
+
- InkKidney
|
|
561
|
+
- InkLabTest
|
|
562
|
+
- InkLungs
|
|
563
|
+
- InkMaleFemaleSex
|
|
564
|
+
- InkMedicalKit
|
|
565
|
+
- InkNasalSpray
|
|
566
|
+
- InkOintment
|
|
567
|
+
- InkPharmacyStore
|
|
568
|
+
- InkPillsBlisterPack
|
|
569
|
+
- InkPillsContainer
|
|
570
|
+
- InkPills
|
|
571
|
+
- InkSanitizer
|
|
572
|
+
- InkStethoscope
|
|
573
|
+
- InkStomach
|
|
574
|
+
- InkSyringe
|
|
575
|
+
- InkTooth
|
|
576
|
+
- InkVirus
|
|
577
|
+
- InkWalkingFrame
|
|
578
|
+
|
|
579
|
+
### Holidays
|
|
580
|
+
|
|
581
|
+
- InkBirthdayCakeSlice
|
|
582
|
+
- InkBirthdayCap
|
|
583
|
+
- InkCandies
|
|
584
|
+
- InkChampagneCheers
|
|
585
|
+
- InkChristmasAngel
|
|
586
|
+
- InkChristmasBells
|
|
587
|
+
- InkChristmasElf
|
|
588
|
+
- InkChristmasSack
|
|
589
|
+
- InkChristmasSnowman
|
|
590
|
+
- InkChristmasStar
|
|
591
|
+
- InkChristmasStocking
|
|
592
|
+
- InkChristmasTreeBall1
|
|
593
|
+
- InkChristmasTreeBall2
|
|
594
|
+
- InkChristmasTree
|
|
595
|
+
- InkChristmasWreath
|
|
596
|
+
- InkCookieMan
|
|
597
|
+
- InkFireworks
|
|
598
|
+
- InkFlowerBouquet
|
|
599
|
+
- InkHalloweenGhost1
|
|
600
|
+
- InkHalloweenGhost2
|
|
601
|
+
- InkHalloweenJack
|
|
602
|
+
- InkHanukkah
|
|
603
|
+
- InkIndependenceDayGrill
|
|
604
|
+
- InkMagicWand
|
|
605
|
+
- InkSparkles1
|
|
606
|
+
- InkSparkles2
|
|
607
|
+
- InkSparkles3
|
|
608
|
+
- InkStPatricksDayClover
|
|
609
|
+
- InkValentinesDayTeddy
|
|
610
|
+
|
|
611
|
+
### Marketing
|
|
612
|
+
|
|
613
|
+
- InkAiAutomation
|
|
614
|
+
- InkBarChartUp
|
|
615
|
+
- InkCogs
|
|
616
|
+
- InkContentImage
|
|
617
|
+
- InkContentVideo
|
|
618
|
+
- InkDataFlow
|
|
619
|
+
- InkDataReport
|
|
620
|
+
- InkEmailInbox
|
|
621
|
+
- InkEmailOpened
|
|
622
|
+
- InkEmail
|
|
623
|
+
- InkFireTrending
|
|
624
|
+
- InkFlag
|
|
625
|
+
- InkInstagramPost
|
|
626
|
+
- InkLink
|
|
627
|
+
- InkLockUnlocked
|
|
628
|
+
- InkMarketingCampaign
|
|
629
|
+
- InkMessageInformation
|
|
630
|
+
- InkMessageQuestionsFaq
|
|
631
|
+
- InkMoneyMetricUp
|
|
632
|
+
- InkMoneySearch
|
|
633
|
+
- InkNews
|
|
634
|
+
- InkNotificationHashtag
|
|
635
|
+
- InkPresentationLive
|
|
636
|
+
- InkPresentationReport
|
|
637
|
+
- InkPrivacyGdpr
|
|
638
|
+
- InkStaircaseUp
|
|
639
|
+
- InkTimer
|
|
640
|
+
- InkUploadToCloud
|
|
641
|
+
- InkWorkingByDesk
|
|
642
|
+
|
|
643
|
+
### Music
|
|
644
|
+
|
|
645
|
+
- InkBanjo
|
|
646
|
+
- InkBoombox
|
|
647
|
+
- InkCassetteTape
|
|
648
|
+
- InkCastanets
|
|
649
|
+
- InkCongasDrum
|
|
650
|
+
- InkDigitalPiano
|
|
651
|
+
- InkDjembeAfricanDrum
|
|
652
|
+
- InkDrumSet
|
|
653
|
+
- InkDrum
|
|
654
|
+
- InkFlute
|
|
655
|
+
- InkGuitar
|
|
656
|
+
- InkHarmonica
|
|
657
|
+
- InkHarp
|
|
658
|
+
- InkHorn
|
|
659
|
+
- InkKalimba
|
|
660
|
+
- InkMaracas
|
|
661
|
+
- InkMetronome
|
|
662
|
+
- InkOcarina
|
|
663
|
+
- InkPanflute
|
|
664
|
+
- InkPiano
|
|
665
|
+
- InkPlates
|
|
666
|
+
- InkSaxophone
|
|
667
|
+
- InkSubwoofer
|
|
668
|
+
- InkTambourine
|
|
669
|
+
- InkTriangle
|
|
670
|
+
- InkTrumpet
|
|
671
|
+
- InkTuningFork
|
|
672
|
+
- InkVinylRecordPlayer
|
|
673
|
+
- InkVinylRecord
|
|
674
|
+
- InkViolin
|
|
675
|
+
- InkVocalMicrophone
|
|
676
|
+
- InkXylophone
|
|
677
|
+
|
|
678
|
+
### Nature
|
|
679
|
+
|
|
680
|
+
- InkBamboo
|
|
681
|
+
- InkCherryBlossoms
|
|
682
|
+
- InkChestnut
|
|
683
|
+
- InkEarWheat
|
|
684
|
+
- InkFourLeafClover
|
|
685
|
+
- InkHazelnut
|
|
686
|
+
- InkLeaf1
|
|
687
|
+
- InkLeaf2
|
|
688
|
+
- InkMushroom
|
|
689
|
+
- InkPalm
|
|
690
|
+
- InkReedGrass
|
|
691
|
+
- InkSunflower
|
|
692
|
+
- InkTreeEvergreen
|
|
693
|
+
- InkTreeStump
|
|
694
|
+
- InkTree
|
|
695
|
+
- InkVaseWithWildflowers
|
|
696
|
+
|
|
697
|
+
### Office
|
|
698
|
+
|
|
699
|
+
- InkBooksStack
|
|
700
|
+
- InkBooks
|
|
701
|
+
- InkBoxOpened
|
|
702
|
+
- InkCalculator
|
|
703
|
+
- InkClassicPhone
|
|
704
|
+
- InkCoffeeMug
|
|
705
|
+
- InkComputerMouse
|
|
706
|
+
- InkCorkNoticeBoard
|
|
707
|
+
- InkCutterPaperKnife
|
|
708
|
+
- InkDeskLamp
|
|
709
|
+
- InkDuctTape
|
|
710
|
+
- InkDumbbell
|
|
711
|
+
- InkElectricCoolingFan
|
|
712
|
+
- InkEmployeeIdBadge
|
|
713
|
+
- InkEmployeeOfMonth
|
|
714
|
+
- InkEraser
|
|
715
|
+
- InkExtensionCableCord
|
|
716
|
+
- InkFileFolder
|
|
717
|
+
- InkFlashDriveUsb
|
|
718
|
+
- InkHeadphones
|
|
719
|
+
- InkKeyboard
|
|
720
|
+
- InkLaptop
|
|
721
|
+
- InkMarker
|
|
722
|
+
- InkOfficeChair01
|
|
723
|
+
- InkOfficeChair02
|
|
724
|
+
- InkOfficeNotebook
|
|
725
|
+
- InkOfficePlant1
|
|
726
|
+
- InkOfficePlant2
|
|
727
|
+
- InkOfficePlant3
|
|
728
|
+
- InkOfficeProjector
|
|
729
|
+
- InkOfficeSnack
|
|
730
|
+
- InkPaperClip
|
|
731
|
+
- InkPaperShredder
|
|
732
|
+
- InkPen
|
|
733
|
+
- InkPencilSharpener
|
|
734
|
+
- InkPrinter
|
|
735
|
+
- InkSandglass
|
|
736
|
+
- InkScanner
|
|
737
|
+
- InkScissors
|
|
738
|
+
- InkShelfWithBooks
|
|
739
|
+
- InkSmartphone
|
|
740
|
+
- InkStapler
|
|
741
|
+
- InkStickyNotes
|
|
742
|
+
- InkTrashBin
|
|
743
|
+
- InkUsbDrive01
|
|
744
|
+
- InkUsbDrive02
|
|
745
|
+
- InkUsbHub
|
|
746
|
+
- InkWallCalendar
|
|
747
|
+
- InkWallClock
|
|
748
|
+
- InkWebCamera
|
|
749
|
+
- InkWifiRouter
|
|
750
|
+
- InkWorkingTable
|
|
751
|
+
|
|
752
|
+
### Other
|
|
753
|
+
|
|
754
|
+
- InkAirBalloon
|
|
755
|
+
- InkBackpack
|
|
756
|
+
- InkCowboyHat
|
|
757
|
+
- InkCrown
|
|
758
|
+
- InkDolphin
|
|
759
|
+
- InkFlowerVase
|
|
760
|
+
- InkGiftBox
|
|
761
|
+
- InkHare
|
|
762
|
+
- InkJuiceCarton
|
|
763
|
+
- InkMicrophone
|
|
764
|
+
- InkPaperPlane
|
|
765
|
+
- InkPartyHat
|
|
766
|
+
- InkPokemon
|
|
767
|
+
- InkSсulptureBust
|
|
768
|
+
- InkWallet
|
|
769
|
+
|
|
770
|
+
### People
|
|
771
|
+
|
|
772
|
+
- InkCouple01
|
|
773
|
+
- InkCouple02
|
|
774
|
+
- InkCouple03
|
|
775
|
+
- InkMan01
|
|
776
|
+
- InkMan02
|
|
777
|
+
- InkMan03
|
|
778
|
+
- InkMan04
|
|
779
|
+
- InkMan05
|
|
780
|
+
- InkMan06
|
|
781
|
+
- InkMan07
|
|
782
|
+
- InkMan08
|
|
783
|
+
- InkMan09
|
|
784
|
+
- InkMan10
|
|
785
|
+
- InkMan11
|
|
786
|
+
- InkMan12
|
|
787
|
+
- InkMan13
|
|
788
|
+
- InkMan14
|
|
789
|
+
- InkMan15
|
|
790
|
+
- InkMan16
|
|
791
|
+
- InkMan17
|
|
792
|
+
- InkWoman01
|
|
793
|
+
- InkWoman02
|
|
794
|
+
- InkWoman03
|
|
795
|
+
- InkWoman04
|
|
796
|
+
- InkWoman05
|
|
797
|
+
- InkWoman06
|
|
798
|
+
- InkWoman07
|
|
799
|
+
- InkWoman08
|
|
800
|
+
- InkWoman09
|
|
801
|
+
- InkWoman10
|
|
802
|
+
- InkWoman11
|
|
803
|
+
- InkWoman12
|
|
804
|
+
|
|
805
|
+
### Pets
|
|
806
|
+
|
|
807
|
+
- InkBirdCage
|
|
808
|
+
- InkCatFace
|
|
809
|
+
- InkCatPlaying
|
|
810
|
+
- InkCatStanding
|
|
811
|
+
- InkDogFace
|
|
812
|
+
- InkDogHouse
|
|
813
|
+
- InkDogStanding
|
|
814
|
+
- InkDogToy
|
|
815
|
+
- InkFishAquarium
|
|
816
|
+
- InkPetBowl
|
|
817
|
+
- InkPetCollar
|
|
818
|
+
- InkPetCrate
|
|
819
|
+
- InkPetFood
|
|
820
|
+
- InkPetLitterShovel
|
|
821
|
+
- InkRabbit
|
|
822
|
+
- InkSnake
|
|
823
|
+
|
|
824
|
+
### Sciency
|
|
825
|
+
|
|
826
|
+
- InkAnatomy
|
|
827
|
+
- InkAsteroid
|
|
828
|
+
- InkAstronaut
|
|
829
|
+
- InkBacteria
|
|
830
|
+
- InkChemistry
|
|
831
|
+
- InkDna
|
|
832
|
+
- InkLabTube
|
|
833
|
+
- InkMicroChips
|
|
834
|
+
- InkMicroscope
|
|
835
|
+
- InkNewtonsCradle
|
|
836
|
+
- InkNuclearEnergy
|
|
837
|
+
- InkPlanet
|
|
838
|
+
- InkPlantInTube
|
|
839
|
+
- InkRobotics
|
|
840
|
+
- InkSpaceTravel
|
|
841
|
+
- InkTelescope
|
|
842
|
+
|
|
843
|
+
### Shop
|
|
844
|
+
|
|
845
|
+
- InkBillCheck
|
|
846
|
+
- InkBox
|
|
847
|
+
- InkClosed
|
|
848
|
+
- InkCreditCard
|
|
849
|
+
- InkDiscountTag
|
|
850
|
+
- InkDollarBill
|
|
851
|
+
- InkGoShopping
|
|
852
|
+
- InkLuxuryJewellery
|
|
853
|
+
- InkOpenAllDay24Hours
|
|
854
|
+
- InkOpen
|
|
855
|
+
- InkPosTerminalMachine
|
|
856
|
+
- InkQrCodeScanMobile
|
|
857
|
+
- InkQrCode
|
|
858
|
+
- InkSavingMoney
|
|
859
|
+
- InkShoppingBasket
|
|
860
|
+
- InkStoreShop
|
|
861
|
+
|
|
862
|
+
### Sport
|
|
863
|
+
|
|
864
|
+
- InkAlpinist
|
|
865
|
+
- InkAmericanFootball
|
|
866
|
+
- InkBarbell
|
|
867
|
+
- InkBaseballBatWithBall
|
|
868
|
+
- InkBaseball
|
|
869
|
+
- InkBasketball
|
|
870
|
+
- InkBoxingGloves
|
|
871
|
+
- InkBoxing
|
|
872
|
+
- InkCanoeist
|
|
873
|
+
- InkCardioExerciseAthletePowerlifterWithBarbell
|
|
874
|
+
- InkCoachWhistle
|
|
875
|
+
- InkCurlingStone
|
|
876
|
+
- InkCyclistBicycle
|
|
877
|
+
- InkFencerSwordsmanWithSaber
|
|
878
|
+
- InkFitnessTracker
|
|
879
|
+
- InkFootballPlayer
|
|
880
|
+
- InkFrisbee
|
|
881
|
+
- InkGolfClubSet
|
|
882
|
+
- InkGolfTennisHatCap
|
|
883
|
+
- InkHandBandage
|
|
884
|
+
- InkHockeyPlayer
|
|
885
|
+
- InkHockeyStickWithPuck
|
|
886
|
+
- InkIceSkating
|
|
887
|
+
- InkJumpingRopes
|
|
888
|
+
- InkKarateMaster
|
|
889
|
+
- InkKettlebell
|
|
890
|
+
- InkLifeJacket
|
|
891
|
+
- InkMotocrossMotorcycle
|
|
892
|
+
- InkPoleVaultAthleteJumper
|
|
893
|
+
- InkPunchingBoxingBag
|
|
894
|
+
- InkResistanceBand
|
|
895
|
+
- InkReusableWaterBottleWithEnergyDrink
|
|
896
|
+
- InkReusableWaterBottle
|
|
897
|
+
- InkRollerSkates
|
|
898
|
+
- InkRunning
|
|
899
|
+
- InkSkateboarder
|
|
900
|
+
- InkSkates
|
|
901
|
+
- InkSkier
|
|
902
|
+
- InkSnorkeling
|
|
903
|
+
- InkSnowboarder
|
|
904
|
+
- InkSoccer
|
|
905
|
+
- InkSportBag
|
|
906
|
+
- InkSportsHockeyFootballHelmet
|
|
907
|
+
- InkSumoWrestler
|
|
908
|
+
- InkSurferSurfboard
|
|
909
|
+
- InkSwimmingGogglesWithCap
|
|
910
|
+
- InkTableTennis
|
|
911
|
+
- InkTennisShuttlecock
|
|
912
|
+
- InkTennis
|
|
913
|
+
- InkVolleyball
|
|
914
|
+
|
|
915
|
+
### Therapy
|
|
916
|
+
|
|
917
|
+
- InkBalanceYinYang
|
|
918
|
+
- InkBrokenHeart
|
|
919
|
+
- InkGroupOnlineTherapy
|
|
920
|
+
- InkHumanMoods
|
|
921
|
+
- InkIndividualOnlineTherapy
|
|
922
|
+
- InkMindDepression
|
|
923
|
+
- InkMindEnergyLevels
|
|
924
|
+
- InkMindProblemSolving
|
|
925
|
+
- InkMindQuestion
|
|
926
|
+
- InkMindThoughtProcess
|
|
927
|
+
- InkPsychiatryNeurons
|
|
928
|
+
- InkPsychologySymbol
|
|
929
|
+
- InkPsychotherapistTakingNotes
|
|
930
|
+
- InkStoneStacking
|
|
931
|
+
- InkYogaMan
|
|
932
|
+
- InkYogaWoman
|
|
933
|
+
|
|
934
|
+
### Transport
|
|
935
|
+
|
|
936
|
+
- InkAirPlane
|
|
937
|
+
- InkBicycle
|
|
938
|
+
- InkBus
|
|
939
|
+
- InkCableCar
|
|
940
|
+
- InkCarKey1
|
|
941
|
+
- InkCarKey2
|
|
942
|
+
- InkCar
|
|
943
|
+
- InkCargoShip
|
|
944
|
+
- InkCrane
|
|
945
|
+
- InkCruiseShip
|
|
946
|
+
- InkDirigible
|
|
947
|
+
- InkDoubleDecker
|
|
948
|
+
- InkGasStationPump
|
|
949
|
+
- InkHelicopter
|
|
950
|
+
- InkHighSpeedTrain
|
|
951
|
+
- InkHotAirBalloon
|
|
952
|
+
- InkKayak
|
|
953
|
+
- InkMoped
|
|
954
|
+
- InkMotorbike
|
|
955
|
+
- InkPowerBoat1
|
|
956
|
+
- InkPowerBoat2
|
|
957
|
+
- InkRv
|
|
958
|
+
- InkSailboat
|
|
959
|
+
- InkScooter
|
|
960
|
+
- InkSegway
|
|
961
|
+
- InkSemi
|
|
962
|
+
- InkSkateboard
|
|
963
|
+
- InkSubmarine
|
|
964
|
+
- InkTractor
|
|
965
|
+
- InkTrafficLight
|
|
966
|
+
- InkTram
|
|
967
|
+
- InkWaterScooter
|
|
968
|
+
|
|
969
|
+
### Travel
|
|
970
|
+
|
|
971
|
+
- InkAirplanePillow
|
|
972
|
+
- InkAviatorSunglasses
|
|
973
|
+
- InkBonfire
|
|
974
|
+
- InkCampingSuv
|
|
975
|
+
- InkCarabine
|
|
976
|
+
- InkCompass
|
|
977
|
+
- InkDirectionSigns
|
|
978
|
+
- InkDoNotDisturb
|
|
979
|
+
- InkDrawing1
|
|
980
|
+
- InkDrawing
|
|
981
|
+
- InkFlashlight
|
|
982
|
+
- InkFlipFlops
|
|
983
|
+
- InkFlippers
|
|
984
|
+
- InkHotelSign
|
|
985
|
+
- InkMatches
|
|
986
|
+
- InkPanama
|
|
987
|
+
- InkPaperMap
|
|
988
|
+
- InkPassport
|
|
989
|
+
- InkPolaroidPhotoCard1
|
|
990
|
+
- InkPolaroidPhotoCard2
|
|
991
|
+
- InkRescueCircle
|
|
992
|
+
- InkSuitcase
|
|
993
|
+
- InkSunBed
|
|
994
|
+
- InkSunscreen
|
|
995
|
+
- InkSwimsuitBikini
|
|
996
|
+
- InkSwimsuitShorts
|
|
997
|
+
- InkSwissKnife
|
|
998
|
+
- InkTemplate
|
|
999
|
+
- InkTent
|
|
1000
|
+
- InkTouristBackpack
|
|
1001
|
+
- InkTouristBriefcase
|
|
1002
|
+
|
|
1003
|
+
### Weather
|
|
1004
|
+
|
|
1005
|
+
- InkGroup7975
|
|
1006
|
+
- InkClearNight
|
|
1007
|
+
- InkCloudy
|
|
1008
|
+
- InkPartlyCloudyDay
|
|
1009
|
+
- InkPartlyCloudyNight
|
|
1010
|
+
- InkRainDrops
|
|
1011
|
+
- InkRainbow
|
|
1012
|
+
- InkRainy
|
|
1013
|
+
- InkSnowflake
|
|
1014
|
+
- InkSnowy
|
|
1015
|
+
- InkStrongWind
|
|
1016
|
+
- InkTemperatureCold
|
|
1017
|
+
- InkTemperatureHot
|
|
1018
|
+
- InkThunderstorm
|
|
1019
|
+
- InkTornado
|
|
1020
|
+
- InkUmbrella
|
|
1021
|
+
- InkWindy
|
|
1022
|
+
|
|
1023
|
+
### Work
|
|
1024
|
+
|
|
1025
|
+
- InkCodeTerminal
|
|
1026
|
+
- InkDocumentSignature
|
|
1027
|
+
- InkDocumentWithInfographic
|
|
1028
|
+
- InkDocumentsAndMedia
|
|
1029
|
+
- InkForm
|
|
1030
|
+
- InkInfographics
|
|
1031
|
+
- InkLaptopBrowser
|
|
1032
|
+
- InkMonitorBrowser
|
|
1033
|
+
- InkPackageDiscount
|
|
1034
|
+
- InkPerformanceMetric
|
|
1035
|
+
- InkPieChartDiscount
|
|
1036
|
+
- InkProfile
|
|
1037
|
+
- InkStopSign
|
|
1038
|
+
- InkWebWindow
|
|
1039
|
+
- InkWorkflow
|