Skip to content

Commit 67d1810

Browse files
authored
feat(icons): add new icons (#247)
1 parent 36ef073 commit 67d1810

7 files changed

+160
-0
lines changed

src/components/icons/index.js

+24
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ import OrigCloseIcon from './svg/close.react.svg';
4242
import OrigCodeViewIcon from './svg/code-view.react.svg';
4343
import OrigCoinsIcon from './svg/coins.react.svg';
4444
import OrigColumnsIcon from './svg/columns.react.svg';
45+
import OrigConnectionIcon from './svg/connection.react.svg';
4546
import OrigConnectorIcon from './svg/connector.react.svg';
4647
import OrigCopyIcon from './svg/copy.react.svg';
4748
import OrigCubesIcon from './svg/cubes.react.svg';
@@ -66,6 +67,7 @@ import OrigFlagIcon from './svg/flag.react.svg';
6667
import OrigFlameIcon from './svg/flame.react.svg';
6768
import OrigGraphIcon from './svg/graph.react.svg';
6869
import OrigGridIcon from './svg/grid.react.svg';
70+
import OrigHeartIcon from './svg/heart.react.svg';
6971
import OrigImportIcon from './svg/import.react.svg';
7072
import OrigInfoIcon from './svg/info.react.svg';
7173
import OrigInformationIcon from './svg/information.react.svg';
@@ -75,18 +77,22 @@ import OrigMailIcon from './svg/mail.react.svg';
7577
import OrigMinimizeIcon from './svg/minimize.react.svg';
7678
import OrigNestedViewIcon from './svg/nested-view.react.svg';
7779
import OrigPagesIcon from './svg/pages.react.svg';
80+
import OrigPaperclipIcon from './svg/paperclip.react.svg';
7881
import OrigPinActiveIcon from './svg/pin-active.react.svg';
7982
import OrigPinIcon from './svg/pin.react.svg';
83+
import OrigPluginIcon from './svg/plugin.react.svg';
8084
import OrigProjectSettingsIcon from './svg/project-settings.react.svg';
8185
import OrigRefreshIcon from './svg/refresh.react.svg';
8286
import OrigRestoreIcon from './svg/restore.react.svg';
8387
import OrigReturnInfoIcon from './svg/return-info.react.svg';
8488
import OrigRevertIcon from './svg/revert.react.svg';
8589
import OrigReviewIcon from './svg/review.react.svg';
90+
import OrigRocketIcon from './svg/rocket.react.svg';
8691
import OrigSearchIcon from './svg/search.react.svg';
8792
import OrigSortingIcon from './svg/sorting.react.svg';
8893
import OrigSpeedometerIcon from './svg/speedometer.react.svg';
8994
import OrigSplitIcon from './svg/split.react.svg';
95+
import OrigStarIcon from './svg/star.react.svg';
9096
import OrigSuccessIcon from './svg/success.react.svg';
9197
import OrigSupportIcon from './svg/support.react.svg';
9298
import OrigSwitcherIcon from './svg/switcher.react.svg';
@@ -145,6 +151,7 @@ const CloseIcon = withThemeProp(withSizeProp(OrigCloseIcon));
145151
const CodeViewIcon = withThemeProp(withSizeProp(OrigCodeViewIcon));
146152
const CoinsIcon = withThemeProp(withSizeProp(OrigCoinsIcon));
147153
const ColumnsIcon = withThemeProp(withSizeProp(OrigColumnsIcon));
154+
const ConnectionIcon = withThemeProp(withSizeProp(OrigConnectionIcon));
148155
const ConnectorIcon = withThemeProp(withSizeProp(OrigConnectorIcon));
149156
const CopyIcon = withThemeProp(withSizeProp(OrigCopyIcon));
150157
const CubesIcon = withThemeProp(withSizeProp(OrigCubesIcon));
@@ -169,6 +176,7 @@ const FlagIcon = withThemeProp(withSizeProp(OrigFlagIcon));
169176
const FlameIcon = withThemeProp(withSizeProp(OrigFlameIcon));
170177
const GraphIcon = withThemeProp(withSizeProp(OrigGraphIcon));
171178
const GridIcon = withThemeProp(withSizeProp(OrigGridIcon));
179+
const HeartIcon = withThemeProp(withSizeProp(OrigHeartIcon));
172180
const ImportIcon = withThemeProp(withSizeProp(OrigImportIcon));
173181
const InfoIcon = withThemeProp(withSizeProp(OrigInfoIcon));
174182
const InformationIcon = withThemeProp(withSizeProp(OrigInformationIcon));
@@ -178,8 +186,10 @@ const MailIcon = withThemeProp(withSizeProp(OrigMailIcon));
178186
const MinimizeIcon = withThemeProp(withSizeProp(OrigMinimizeIcon));
179187
const NestedViewIcon = withThemeProp(withSizeProp(OrigNestedViewIcon));
180188
const PagesIcon = withThemeProp(withSizeProp(OrigPagesIcon));
189+
const PaperclipIcon = withThemeProp(withSizeProp(OrigPaperclipIcon));
181190
const PinActiveIcon = withThemeProp(withSizeProp(OrigPinActiveIcon));
182191
const PinIcon = withThemeProp(withSizeProp(OrigPinIcon));
192+
const PluginIcon = withThemeProp(withSizeProp(OrigPluginIcon));
183193
const ProjectSettingsIcon = withThemeProp(
184194
withSizeProp(OrigProjectSettingsIcon)
185195
);
@@ -188,10 +198,12 @@ const RestoreIcon = withThemeProp(withSizeProp(OrigRestoreIcon));
188198
const ReturnInfoIcon = withThemeProp(withSizeProp(OrigReturnInfoIcon));
189199
const RevertIcon = withThemeProp(withSizeProp(OrigRevertIcon));
190200
const ReviewIcon = withThemeProp(withSizeProp(OrigReviewIcon));
201+
const RocketIcon = withThemeProp(withSizeProp(OrigRocketIcon));
191202
const SearchIcon = withThemeProp(withSizeProp(OrigSearchIcon));
192203
const SortingIcon = withThemeProp(withSizeProp(OrigSortingIcon));
193204
const SpeedometerIcon = withThemeProp(withSizeProp(OrigSpeedometerIcon));
194205
const SplitIcon = withThemeProp(withSizeProp(OrigSplitIcon));
206+
const StarIcon = withThemeProp(withSizeProp(OrigStarIcon));
195207
const SuccessIcon = withThemeProp(withSizeProp(OrigSuccessIcon));
196208
const SupportIcon = withThemeProp(withSizeProp(OrigSupportIcon));
197209
const SwitcherIcon = withThemeProp(withSizeProp(OrigSwitcherIcon));
@@ -242,6 +254,7 @@ CloseIcon.displayName = 'CloseIcon';
242254
CodeViewIcon.displayName = 'CodeViewIcon';
243255
CoinsIcon.displayName = 'CoinsIcon';
244256
ColumnsIcon.displayName = 'ColumnsIcon';
257+
ConnectionIcon.displayName = 'ConnectionIcon';
245258
ConnectorIcon.displayName = 'ConnectorIcon';
246259
CopyIcon.displayName = 'CopyIcon';
247260
CubesIcon.displayName = 'CubesIcon';
@@ -266,6 +279,7 @@ FlagIcon.displayName = 'FlagIcon';
266279
FlameIcon.displayName = 'FlameIcon';
267280
GraphIcon.displayName = 'GraphIcon';
268281
GridIcon.displayName = 'GridIcon';
282+
HeartIcon.displayName = 'HeartIcon';
269283
ImportIcon.displayName = 'ImportIcon';
270284
InfoIcon.displayName = 'InfoIcon';
271285
InformationIcon.displayName = 'InformationIcon';
@@ -275,18 +289,22 @@ MailIcon.displayName = 'MailIcon';
275289
MinimizeIcon.displayName = 'MinimizeIcon';
276290
NestedViewIcon.displayName = 'NestedViewIcon';
277291
PagesIcon.displayName = 'PagesIcon';
292+
PaperclipIcon.displayName = 'PaperclipIcon';
278293
PinActiveIcon.displayName = 'PinActiveIcon';
279294
PinIcon.displayName = 'PinIcon';
295+
PluginIcon.displayName = 'PluginIcon';
280296
ProjectSettingsIcon.displayName = 'ProjectSettingsIcon';
281297
RefreshIcon.displayName = 'RefreshIcon';
282298
RestoreIcon.displayName = 'RestoreIcon';
283299
ReturnInfoIcon.displayName = 'ReturnInfoIcon';
284300
RevertIcon.displayName = 'RevertIcon';
285301
ReviewIcon.displayName = 'ReviewIcon';
302+
RocketIcon.displayName = 'RocketIcon';
286303
SearchIcon.displayName = 'SearchIcon';
287304
SortingIcon.displayName = 'SortingIcon';
288305
SpeedometerIcon.displayName = 'SpeedometerIcon';
289306
SplitIcon.displayName = 'SplitIcon';
307+
StarIcon.displayName = 'StarIcon';
290308
SuccessIcon.displayName = 'SuccessIcon';
291309
SupportIcon.displayName = 'SupportIcon';
292310
SwitcherIcon.displayName = 'SwitcherIcon';
@@ -337,6 +355,7 @@ export { CloseIcon };
337355
export { CodeViewIcon };
338356
export { CoinsIcon };
339357
export { ColumnsIcon };
358+
export { ConnectionIcon };
340359
export { ConnectorIcon };
341360
export { CopyIcon };
342361
export { CubesIcon };
@@ -361,6 +380,7 @@ export { FlagIcon };
361380
export { FlameIcon };
362381
export { GraphIcon };
363382
export { GridIcon };
383+
export { HeartIcon };
364384
export { ImportIcon };
365385
export { InfoIcon };
366386
export { InformationIcon };
@@ -370,18 +390,22 @@ export { MailIcon };
370390
export { MinimizeIcon };
371391
export { NestedViewIcon };
372392
export { PagesIcon };
393+
export { PaperclipIcon };
373394
export { PinActiveIcon };
374395
export { PinIcon };
396+
export { PluginIcon };
375397
export { ProjectSettingsIcon };
376398
export { RefreshIcon };
377399
export { RestoreIcon };
378400
export { ReturnInfoIcon };
379401
export { RevertIcon };
380402
export { ReviewIcon };
403+
export { RocketIcon };
381404
export { SearchIcon };
382405
export { SortingIcon };
383406
export { SpeedometerIcon };
384407
export { SplitIcon };
408+
export { StarIcon };
385409
export { SuccessIcon };
386410
export { SupportIcon };
387411
export { SwitcherIcon };
Loading
+17
Loading
Loading
+32
Loading

0 commit comments

Comments
 (0)