@cdx-ui/icons 0.0.1-beta.2 → 0.0.1-beta.21
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/lib/commonjs/aliases/prefixed.js +91 -0
- package/lib/commonjs/aliases/suffixed.js +91 -0
- package/lib/commonjs/icons/2d_2.js +20 -0
- package/lib/commonjs/icons/3d_2.js +20 -0
- package/lib/commonjs/icons/bitbucket.js +20 -0
- package/lib/commonjs/icons/crop_21_9.js +20 -0
- package/lib/commonjs/icons/crop_2_3.js +20 -0
- package/lib/commonjs/icons/gitlab.js +20 -0
- package/lib/commonjs/icons/index.js +91 -0
- package/lib/commonjs/icons/ink_highlighter_off.js +20 -0
- package/lib/commonjs/icons/tilt_arrow_down.js +20 -0
- package/lib/commonjs/icons/tilt_arrow_up.js +20 -0
- package/lib/commonjs/icons/video_frame_copy.js +20 -0
- package/lib/commonjs/icons/video_frame_save.js +20 -0
- package/lib/commonjs/icons/watch_button.js +20 -0
- package/lib/commonjs/icons/wb_twilight_2.js +20 -0
- package/lib/module/aliases/prefixed.js +13 -0
- package/lib/module/aliases/suffixed.js +13 -0
- package/lib/module/icons/2d_2.js +16 -0
- package/lib/module/icons/3d_2.js +16 -0
- package/lib/module/icons/bitbucket.js +16 -0
- package/lib/module/icons/crop_21_9.js +16 -0
- package/lib/module/icons/crop_2_3.js +16 -0
- package/lib/module/icons/gitlab.js +16 -0
- package/lib/module/icons/index.js +13 -0
- package/lib/module/icons/ink_highlighter_off.js +16 -0
- package/lib/module/icons/tilt_arrow_down.js +16 -0
- package/lib/module/icons/tilt_arrow_up.js +16 -0
- package/lib/module/icons/video_frame_copy.js +16 -0
- package/lib/module/icons/video_frame_save.js +16 -0
- package/lib/module/icons/watch_button.js +16 -0
- package/lib/module/icons/wb_twilight_2.js +16 -0
- package/lib/typescript/aliases/prefixed.d.ts +13 -0
- package/lib/typescript/aliases/suffixed.d.ts +13 -0
- package/lib/typescript/icons/2d_2.d.ts +6 -0
- package/lib/typescript/icons/3d_2.d.ts +6 -0
- package/lib/typescript/icons/bitbucket.d.ts +6 -0
- package/lib/typescript/icons/crop_21_9.d.ts +6 -0
- package/lib/typescript/icons/crop_2_3.d.ts +6 -0
- package/lib/typescript/icons/gitlab.d.ts +6 -0
- package/lib/typescript/icons/index.d.ts +13 -0
- package/lib/typescript/icons/ink_highlighter_off.d.ts +6 -0
- package/lib/typescript/icons/tilt_arrow_down.d.ts +6 -0
- package/lib/typescript/icons/tilt_arrow_up.d.ts +6 -0
- package/lib/typescript/icons/video_frame_copy.d.ts +6 -0
- package/lib/typescript/icons/video_frame_save.d.ts +6 -0
- package/lib/typescript/icons/watch_button.d.ts +6 -0
- package/lib/typescript/icons/wb_twilight_2.d.ts +6 -0
- package/package.json +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import createCdxIcon from '../createCdxIcon';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @preview 
|
|
7
|
+
*/
|
|
8
|
+
const Gitlab = createCdxIcon('Gitlab', {
|
|
9
|
+
outlined: [["path", {
|
|
10
|
+
"d": "M460-126 181-336q-51-38-68-100t6-122l102-265q3-8 10-12.5t15-4.5q8 0 15.5 4.5T272-821l69 211h278l69-211q3-10 10.5-14.5T714-840q8 0 15 4.5t10 12.5l101 265q23 60 6 122t-68 100L498-126q-8 6-19 6t-19-6Z"
|
|
11
|
+
}]],
|
|
12
|
+
filled: [["path", {
|
|
13
|
+
"d": "M460-126 181-336q-51-38-68-100t6-122l102-265q3-8 10-12.5t15-4.5q8 0 15.5 4.5T272-821l69 211h278l69-211q3-10 10.5-14.5T714-840q8 0 15 4.5t10 12.5l101 265q23 60 6 122t-68 100L498-126q-8 6-19 6t-19-6Z"
|
|
14
|
+
}]]
|
|
15
|
+
});
|
|
16
|
+
export default Gitlab;
|
|
@@ -24,6 +24,7 @@ export { default as _23mp } from './23mp';
|
|
|
24
24
|
export { default as _24fpsSelect } from './24fps_select';
|
|
25
25
|
export { default as _24mp } from './24mp';
|
|
26
26
|
export { default as _2d } from './2d';
|
|
27
|
+
export { default as _2d2 } from './2d_2';
|
|
27
28
|
export { default as _2k } from './2k';
|
|
28
29
|
export { default as _2kPlus } from './2k_plus';
|
|
29
30
|
export { default as _2mp } from './2mp';
|
|
@@ -31,6 +32,7 @@ export { default as _30fps } from './30fps';
|
|
|
31
32
|
export { default as _30fpsSelect } from './30fps_select';
|
|
32
33
|
export { default as _360 } from './360';
|
|
33
34
|
export { default as _3d } from './3d';
|
|
35
|
+
export { default as _3d2 } from './3d_2';
|
|
34
36
|
export { default as _3dRotation } from './3d_rotation';
|
|
35
37
|
export { default as _3gMobiledata } from './3g_mobiledata';
|
|
36
38
|
export { default as _3gMobiledataBadge } from './3g_mobiledata_badge';
|
|
@@ -468,6 +470,7 @@ export { default as BikeDock } from './bike_dock';
|
|
|
468
470
|
export { default as BikeLane } from './bike_lane';
|
|
469
471
|
export { default as BikeScooter } from './bike_scooter';
|
|
470
472
|
export { default as Biotech } from './biotech';
|
|
473
|
+
export { default as Bitbucket } from './bitbucket';
|
|
471
474
|
export { default as Blanket } from './blanket';
|
|
472
475
|
export { default as Blender } from './blender';
|
|
473
476
|
export { default as Blind } from './blind';
|
|
@@ -890,6 +893,8 @@ export { default as Crib } from './crib';
|
|
|
890
893
|
export { default as CrisisAlert } from './crisis_alert';
|
|
891
894
|
export { default as Crop } from './crop';
|
|
892
895
|
export { default as Crop169 } from './crop_16_9';
|
|
896
|
+
export { default as Crop23 } from './crop_2_3';
|
|
897
|
+
export { default as Crop219 } from './crop_21_9';
|
|
893
898
|
export { default as Crop32 } from './crop_3_2';
|
|
894
899
|
export { default as Crop54 } from './crop_5_4';
|
|
895
900
|
export { default as Crop75 } from './crop_7_5';
|
|
@@ -1568,6 +1573,7 @@ export { default as Gif2 } from './gif_2';
|
|
|
1568
1573
|
export { default as GifBox } from './gif_box';
|
|
1569
1574
|
export { default as Girl } from './girl';
|
|
1570
1575
|
export { default as Gite } from './gite';
|
|
1576
|
+
export { default as Gitlab } from './gitlab';
|
|
1571
1577
|
export { default as GlassCup } from './glass_cup';
|
|
1572
1578
|
export { default as Globe } from './globe';
|
|
1573
1579
|
export { default as Globe2Cancel } from './globe_2_cancel';
|
|
@@ -1807,6 +1813,7 @@ export { default as InkEraser } from './ink_eraser';
|
|
|
1807
1813
|
export { default as InkEraserOff } from './ink_eraser_off';
|
|
1808
1814
|
export { default as InkHighlighter } from './ink_highlighter';
|
|
1809
1815
|
export { default as InkHighlighterMove } from './ink_highlighter_move';
|
|
1816
|
+
export { default as InkHighlighterOff } from './ink_highlighter_off';
|
|
1810
1817
|
export { default as InkMarker } from './ink_marker';
|
|
1811
1818
|
export { default as InkPen } from './ink_pen';
|
|
1812
1819
|
export { default as InkSelection } from './ink_selection';
|
|
@@ -3479,6 +3486,8 @@ export { default as TibiaAlt } from './tibia_alt';
|
|
|
3479
3486
|
export { default as TileLarge } from './tile_large';
|
|
3480
3487
|
export { default as TileMedium } from './tile_medium';
|
|
3481
3488
|
export { default as TileSmall } from './tile_small';
|
|
3489
|
+
export { default as TiltArrowDown } from './tilt_arrow_down';
|
|
3490
|
+
export { default as TiltArrowUp } from './tilt_arrow_up';
|
|
3482
3491
|
export { default as TimeAuto } from './time_auto';
|
|
3483
3492
|
export { default as Timelapse } from './timelapse';
|
|
3484
3493
|
export { default as Timeline } from './timeline';
|
|
@@ -3666,6 +3675,8 @@ export { default as VideoCameraFront } from './video_camera_front';
|
|
|
3666
3675
|
export { default as VideoCameraFrontOff } from './video_camera_front_off';
|
|
3667
3676
|
export { default as VideoChat } from './video_chat';
|
|
3668
3677
|
export { default as VideoFile } from './video_file';
|
|
3678
|
+
export { default as VideoFrameCopy } from './video_frame_copy';
|
|
3679
|
+
export { default as VideoFrameSave } from './video_frame_save';
|
|
3669
3680
|
export { default as VideoLabel } from './video_label';
|
|
3670
3681
|
export { default as VideoLibrary } from './video_library';
|
|
3671
3682
|
export { default as VideoSearch } from './video_search';
|
|
@@ -3749,6 +3760,7 @@ export { default as Watch } from './watch';
|
|
|
3749
3760
|
export { default as WatchAlert } from './watch_alert';
|
|
3750
3761
|
export { default as WatchArrow } from './watch_arrow';
|
|
3751
3762
|
export { default as WatchArrowDown } from './watch_arrow_down';
|
|
3763
|
+
export { default as WatchButton } from './watch_button';
|
|
3752
3764
|
export { default as WatchButtonPress } from './watch_button_press';
|
|
3753
3765
|
export { default as WatchCheck } from './watch_check';
|
|
3754
3766
|
export { default as WatchLock } from './watch_lock';
|
|
@@ -3783,6 +3795,7 @@ export { default as WbIridescent } from './wb_iridescent';
|
|
|
3783
3795
|
export { default as WbShade } from './wb_shade';
|
|
3784
3796
|
export { default as WbSunny } from './wb_sunny';
|
|
3785
3797
|
export { default as WbTwilight } from './wb_twilight';
|
|
3798
|
+
export { default as WbTwilight2 } from './wb_twilight_2';
|
|
3786
3799
|
export { default as Wc } from './wc';
|
|
3787
3800
|
export { default as WeatherHail } from './weather_hail';
|
|
3788
3801
|
export { default as WeatherMix } from './weather_mix';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import createCdxIcon from '../createCdxIcon';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @preview 
|
|
7
|
+
*/
|
|
8
|
+
const InkHighlighterOff = createCdxIcon('InkHighlighterOff', {
|
|
9
|
+
outlined: [["path", {
|
|
10
|
+
"d": "m664-408-56-57 192-191-104-104-192 192-56-57 192-191q24-24 56-24t56 24l104 104q24 24 24 56t-24 56L664-408ZM792-56 552-296 400-144q-24 24-56 24t-56-24l-2-2-26 26H60l126-126-2-2q-24-24-24-56t24-56l152-152L56-792l57-57 736 736-57 57ZM240-304l104 104 152-152-104-104-152 152Zm316-213ZM444-404Z"
|
|
11
|
+
}]],
|
|
12
|
+
filled: [["path", {
|
|
13
|
+
"d": "M665-408 448-625l192-191q24-24 56-24t56 24l104 104q24 24 24 56t-24 56L665-408ZM792-56 552-296 400-144q-24 24-56 24t-56-24l-2-2-26 26H60l126-126-2-2q-24-24-24-56t24-56l152-152L56-792l57-57 736 736-57 57Z"
|
|
14
|
+
}]]
|
|
15
|
+
});
|
|
16
|
+
export default InkHighlighterOff;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import createCdxIcon from '../createCdxIcon';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @preview 
|
|
7
|
+
*/
|
|
8
|
+
const TiltArrowDown = createCdxIcon('TiltArrowDown', {
|
|
9
|
+
outlined: [["path", {
|
|
10
|
+
"d": "M240-120q-33 0-56.5-23.5T160-200v-560q0-33 23.5-56.5T240-840h480q33 0 56.5 23.5T800-760v560q0 33-23.5 56.5T720-120H240Zm0-80h480v-560H240v560Zm200-273-64-63-56 56 160 160 160-160-56-57-64 64v-167h-80v167Zm280 273H240h480Z"
|
|
11
|
+
}]],
|
|
12
|
+
filled: [["path", {
|
|
13
|
+
"d": "M240-120q-33 0-56.5-23.5T160-200v-560q0-33 23.5-56.5T240-840h480q33 0 56.5 23.5T800-760v560q0 33-23.5 56.5T720-120H240Zm200-353-64-63-56 56 160 160 160-160-56-57-64 64v-167h-80v167Z"
|
|
14
|
+
}]]
|
|
15
|
+
});
|
|
16
|
+
export default TiltArrowDown;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import createCdxIcon from '../createCdxIcon';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @preview 
|
|
7
|
+
*/
|
|
8
|
+
const TiltArrowUp = createCdxIcon('TiltArrowUp', {
|
|
9
|
+
outlined: [["path", {
|
|
10
|
+
"d": "M180-120q-38 0-62-29.5T102-217l124-560q6-28 28-45.5t50-17.5h352q28 0 50 17.5t28 45.5l124 560q8 38-16 67.5T780-120H180Zm0-80h600L656-760H304L180-200Zm260-287v167h80v-167l64 63 56-56-160-160-160 160 56 57 64-64Zm340 287H180h600Z"
|
|
11
|
+
}]],
|
|
12
|
+
filled: [["path", {
|
|
13
|
+
"d": "M180-120q-38 0-62-29.5T102-217l124-560q6-28 28-45.5t50-17.5h352q28 0 50 17.5t28 45.5l124 560q8 38-16 67.5T780-120H180Zm260-367v167h80v-167l64 63 56-56-160-160-160 160 56 57 64-64Z"
|
|
14
|
+
}]]
|
|
15
|
+
});
|
|
16
|
+
export default TiltArrowUp;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import createCdxIcon from '../createCdxIcon';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @preview 
|
|
7
|
+
*/
|
|
8
|
+
const VideoFrameCopy = createCdxIcon('VideoFrameCopy', {
|
|
9
|
+
outlined: [["path", {
|
|
10
|
+
"d": "M120-120q-33 0-56.5-23.5T40-200v-480h80v480h640v80H120Zm720-520v-120H720v-80h120q33 0 56.5 23.5T920-760v120h-80Zm-640 0v-120q0-33 23.5-56.5T280-840h120v80H280v120h-80Zm520 360v-80h120v-120h80v120q0 33-23.5 56.5T840-280H720Zm-440 0q-33 0-56.5-23.5T200-360v-120h80v120h120v80H280Zm200-120 249-160-249-160v320Z"
|
|
11
|
+
}]],
|
|
12
|
+
filled: [["path", {
|
|
13
|
+
"d": "M120-120q-33 0-56.5-23.5T40-200v-480h80v480h640v80H120Zm720-520v-120H720v-80h120q33 0 56.5 23.5T920-760v120h-80Zm-640 0v-120q0-33 23.5-56.5T280-840h120v80H280v120h-80Zm520 360v-80h120v-120h80v120q0 33-23.5 56.5T840-280H720Zm-440 0q-33 0-56.5-23.5T200-360v-120h80v120h120v80H280Zm200-120 249-160-249-160v320Z"
|
|
14
|
+
}]]
|
|
15
|
+
});
|
|
16
|
+
export default VideoFrameCopy;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import createCdxIcon from '../createCdxIcon';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @preview 
|
|
7
|
+
*/
|
|
8
|
+
const VideoFrameSave = createCdxIcon('VideoFrameSave', {
|
|
9
|
+
outlined: [["path", {
|
|
10
|
+
"d": "M800-560v-160H640v-80h160q33 0 56.5 23.5T880-720v160h-80Zm-720 0v-160q0-33 23.5-56.5T160-800h160v80H160v160H80Zm80 400q-33 0-56.5-23.5T80-240v-160h80v160h160v80H160Zm220-140v-360l280 180-280 180ZM600-1v-80h320v80H600Zm160-119L600-280l56-56 64 62v-166h80v166l64-62 56 56-160 160Z"
|
|
11
|
+
}]],
|
|
12
|
+
filled: [["path", {
|
|
13
|
+
"d": "M800-560v-160H640v-80h160q33 0 56.5 23.5T880-720v160h-80Zm-720 0v-160q0-33 23.5-56.5T160-800h160v80H160v160H80Zm80 400q-33 0-56.5-23.5T80-240v-160h80v160h160v80H160Zm220-140v-360l280 180-280 180ZM600-1v-80h320v80H600Zm160-119L600-280l56-56 64 62v-166h80v166l64-62 56 56-160 160Z"
|
|
14
|
+
}]]
|
|
15
|
+
});
|
|
16
|
+
export default VideoFrameSave;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import createCdxIcon from '../createCdxIcon';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @preview 
|
|
7
|
+
*/
|
|
8
|
+
const WatchButton = createCdxIcon('WatchButton', {
|
|
9
|
+
outlined: [["path", {
|
|
10
|
+
"d": "m193-57-67-44q45-88 59-184t14-195q0-98-14-194t-59-184l67-44q13 25 23.5 50.5T235-800h85q66 1 113 47.5T480-639v320q0 66-47 113t-113 47h-85q-8 26-18.5 51.5T193-57Zm527-263L560-480l160-160 56 57-63 63h167v80H713l63 64-56 56Zm-463 80h63q33 0 56.5-23.5T400-320v-320q0-33-23.5-56.5T320-720h-64q13 59 18.5 119.5T280-480q0 61-5 121t-18 119Zm23-240Z"
|
|
11
|
+
}]],
|
|
12
|
+
filled: [["path", {
|
|
13
|
+
"d": "m193-57-67-44q45-88 59-184t14-195q0-98-14-194t-59-184l67-44q13 25 23.5 50.5T235-800h85q66 1 113 47.5T480-639v320q0 66-47 113t-113 47h-85q-8 26-18.5 51.5T193-57Zm527-263L560-480l160-160 56 57-63 63h167v80H713l63 64-56 56Z"
|
|
14
|
+
}]]
|
|
15
|
+
});
|
|
16
|
+
export default WatchButton;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import createCdxIcon from '../createCdxIcon';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @preview 
|
|
7
|
+
*/
|
|
8
|
+
const WbTwilight2 = createCdxIcon('WbTwilight2', {
|
|
9
|
+
outlined: [["path", {
|
|
10
|
+
"d": "M80-160v-80h800v80H80Zm217-240h366q-23-54-72-87t-111-33q-62 0-111 33t-72 87Zm-97 80q0-117 81.5-198.5T480-600q117 0 198.5 81.5T760-320H200Zm280-80Z"
|
|
11
|
+
}]],
|
|
12
|
+
filled: [["path", {
|
|
13
|
+
"d": "M80-160v-80h800v80H80Zm120-160q0-117 81.5-198.5T480-600q117 0 198.5 81.5T760-320H200Z"
|
|
14
|
+
}]]
|
|
15
|
+
});
|
|
16
|
+
export default WbTwilight2;
|
|
@@ -22,6 +22,7 @@ export { default as Cdx23mp } from '../icons/23mp';
|
|
|
22
22
|
export { default as Cdx24fpsSelect } from '../icons/24fps_select';
|
|
23
23
|
export { default as Cdx24mp } from '../icons/24mp';
|
|
24
24
|
export { default as Cdx2d } from '../icons/2d';
|
|
25
|
+
export { default as Cdx2d2 } from '../icons/2d_2';
|
|
25
26
|
export { default as Cdx2k } from '../icons/2k';
|
|
26
27
|
export { default as Cdx2kPlus } from '../icons/2k_plus';
|
|
27
28
|
export { default as Cdx2mp } from '../icons/2mp';
|
|
@@ -29,6 +30,7 @@ export { default as Cdx30fps } from '../icons/30fps';
|
|
|
29
30
|
export { default as Cdx30fpsSelect } from '../icons/30fps_select';
|
|
30
31
|
export { default as Cdx360 } from '../icons/360';
|
|
31
32
|
export { default as Cdx3d } from '../icons/3d';
|
|
33
|
+
export { default as Cdx3d2 } from '../icons/3d_2';
|
|
32
34
|
export { default as Cdx3dRotation } from '../icons/3d_rotation';
|
|
33
35
|
export { default as Cdx3gMobiledata } from '../icons/3g_mobiledata';
|
|
34
36
|
export { default as Cdx3gMobiledataBadge } from '../icons/3g_mobiledata_badge';
|
|
@@ -466,6 +468,7 @@ export { default as CdxBikeDock } from '../icons/bike_dock';
|
|
|
466
468
|
export { default as CdxBikeLane } from '../icons/bike_lane';
|
|
467
469
|
export { default as CdxBikeScooter } from '../icons/bike_scooter';
|
|
468
470
|
export { default as CdxBiotech } from '../icons/biotech';
|
|
471
|
+
export { default as CdxBitbucket } from '../icons/bitbucket';
|
|
469
472
|
export { default as CdxBlanket } from '../icons/blanket';
|
|
470
473
|
export { default as CdxBlender } from '../icons/blender';
|
|
471
474
|
export { default as CdxBlind } from '../icons/blind';
|
|
@@ -888,6 +891,8 @@ export { default as CdxCrib } from '../icons/crib';
|
|
|
888
891
|
export { default as CdxCrisisAlert } from '../icons/crisis_alert';
|
|
889
892
|
export { default as CdxCrop } from '../icons/crop';
|
|
890
893
|
export { default as CdxCrop169 } from '../icons/crop_16_9';
|
|
894
|
+
export { default as CdxCrop23 } from '../icons/crop_2_3';
|
|
895
|
+
export { default as CdxCrop219 } from '../icons/crop_21_9';
|
|
891
896
|
export { default as CdxCrop32 } from '../icons/crop_3_2';
|
|
892
897
|
export { default as CdxCrop54 } from '../icons/crop_5_4';
|
|
893
898
|
export { default as CdxCrop75 } from '../icons/crop_7_5';
|
|
@@ -1566,6 +1571,7 @@ export { default as CdxGif2 } from '../icons/gif_2';
|
|
|
1566
1571
|
export { default as CdxGifBox } from '../icons/gif_box';
|
|
1567
1572
|
export { default as CdxGirl } from '../icons/girl';
|
|
1568
1573
|
export { default as CdxGite } from '../icons/gite';
|
|
1574
|
+
export { default as CdxGitlab } from '../icons/gitlab';
|
|
1569
1575
|
export { default as CdxGlassCup } from '../icons/glass_cup';
|
|
1570
1576
|
export { default as CdxGlobe } from '../icons/globe';
|
|
1571
1577
|
export { default as CdxGlobe2Cancel } from '../icons/globe_2_cancel';
|
|
@@ -1805,6 +1811,7 @@ export { default as CdxInkEraser } from '../icons/ink_eraser';
|
|
|
1805
1811
|
export { default as CdxInkEraserOff } from '../icons/ink_eraser_off';
|
|
1806
1812
|
export { default as CdxInkHighlighter } from '../icons/ink_highlighter';
|
|
1807
1813
|
export { default as CdxInkHighlighterMove } from '../icons/ink_highlighter_move';
|
|
1814
|
+
export { default as CdxInkHighlighterOff } from '../icons/ink_highlighter_off';
|
|
1808
1815
|
export { default as CdxInkMarker } from '../icons/ink_marker';
|
|
1809
1816
|
export { default as CdxInkPen } from '../icons/ink_pen';
|
|
1810
1817
|
export { default as CdxInkSelection } from '../icons/ink_selection';
|
|
@@ -3477,6 +3484,8 @@ export { default as CdxTibiaAlt } from '../icons/tibia_alt';
|
|
|
3477
3484
|
export { default as CdxTileLarge } from '../icons/tile_large';
|
|
3478
3485
|
export { default as CdxTileMedium } from '../icons/tile_medium';
|
|
3479
3486
|
export { default as CdxTileSmall } from '../icons/tile_small';
|
|
3487
|
+
export { default as CdxTiltArrowDown } from '../icons/tilt_arrow_down';
|
|
3488
|
+
export { default as CdxTiltArrowUp } from '../icons/tilt_arrow_up';
|
|
3480
3489
|
export { default as CdxTimeAuto } from '../icons/time_auto';
|
|
3481
3490
|
export { default as CdxTimelapse } from '../icons/timelapse';
|
|
3482
3491
|
export { default as CdxTimeline } from '../icons/timeline';
|
|
@@ -3664,6 +3673,8 @@ export { default as CdxVideoCameraFront } from '../icons/video_camera_front';
|
|
|
3664
3673
|
export { default as CdxVideoCameraFrontOff } from '../icons/video_camera_front_off';
|
|
3665
3674
|
export { default as CdxVideoChat } from '../icons/video_chat';
|
|
3666
3675
|
export { default as CdxVideoFile } from '../icons/video_file';
|
|
3676
|
+
export { default as CdxVideoFrameCopy } from '../icons/video_frame_copy';
|
|
3677
|
+
export { default as CdxVideoFrameSave } from '../icons/video_frame_save';
|
|
3667
3678
|
export { default as CdxVideoLabel } from '../icons/video_label';
|
|
3668
3679
|
export { default as CdxVideoLibrary } from '../icons/video_library';
|
|
3669
3680
|
export { default as CdxVideoSearch } from '../icons/video_search';
|
|
@@ -3747,6 +3758,7 @@ export { default as CdxWatch } from '../icons/watch';
|
|
|
3747
3758
|
export { default as CdxWatchAlert } from '../icons/watch_alert';
|
|
3748
3759
|
export { default as CdxWatchArrow } from '../icons/watch_arrow';
|
|
3749
3760
|
export { default as CdxWatchArrowDown } from '../icons/watch_arrow_down';
|
|
3761
|
+
export { default as CdxWatchButton } from '../icons/watch_button';
|
|
3750
3762
|
export { default as CdxWatchButtonPress } from '../icons/watch_button_press';
|
|
3751
3763
|
export { default as CdxWatchCheck } from '../icons/watch_check';
|
|
3752
3764
|
export { default as CdxWatchLock } from '../icons/watch_lock';
|
|
@@ -3781,6 +3793,7 @@ export { default as CdxWbIridescent } from '../icons/wb_iridescent';
|
|
|
3781
3793
|
export { default as CdxWbShade } from '../icons/wb_shade';
|
|
3782
3794
|
export { default as CdxWbSunny } from '../icons/wb_sunny';
|
|
3783
3795
|
export { default as CdxWbTwilight } from '../icons/wb_twilight';
|
|
3796
|
+
export { default as CdxWbTwilight2 } from '../icons/wb_twilight_2';
|
|
3784
3797
|
export { default as CdxWc } from '../icons/wc';
|
|
3785
3798
|
export { default as CdxWeatherHail } from '../icons/weather_hail';
|
|
3786
3799
|
export { default as CdxWeatherMix } from '../icons/weather_mix';
|
|
@@ -22,6 +22,7 @@ export { default as _23mpIcon } from '../icons/23mp';
|
|
|
22
22
|
export { default as _24fpsSelectIcon } from '../icons/24fps_select';
|
|
23
23
|
export { default as _24mpIcon } from '../icons/24mp';
|
|
24
24
|
export { default as _2dIcon } from '../icons/2d';
|
|
25
|
+
export { default as _2d2Icon } from '../icons/2d_2';
|
|
25
26
|
export { default as _2kIcon } from '../icons/2k';
|
|
26
27
|
export { default as _2kPlusIcon } from '../icons/2k_plus';
|
|
27
28
|
export { default as _2mpIcon } from '../icons/2mp';
|
|
@@ -29,6 +30,7 @@ export { default as _30fpsIcon } from '../icons/30fps';
|
|
|
29
30
|
export { default as _30fpsSelectIcon } from '../icons/30fps_select';
|
|
30
31
|
export { default as _360Icon } from '../icons/360';
|
|
31
32
|
export { default as _3dIcon } from '../icons/3d';
|
|
33
|
+
export { default as _3d2Icon } from '../icons/3d_2';
|
|
32
34
|
export { default as _3dRotationIcon } from '../icons/3d_rotation';
|
|
33
35
|
export { default as _3gMobiledataIcon } from '../icons/3g_mobiledata';
|
|
34
36
|
export { default as _3gMobiledataBadgeIcon } from '../icons/3g_mobiledata_badge';
|
|
@@ -466,6 +468,7 @@ export { default as BikeDockIcon } from '../icons/bike_dock';
|
|
|
466
468
|
export { default as BikeLaneIcon } from '../icons/bike_lane';
|
|
467
469
|
export { default as BikeScooterIcon } from '../icons/bike_scooter';
|
|
468
470
|
export { default as BiotechIcon } from '../icons/biotech';
|
|
471
|
+
export { default as BitbucketIcon } from '../icons/bitbucket';
|
|
469
472
|
export { default as BlanketIcon } from '../icons/blanket';
|
|
470
473
|
export { default as BlenderIcon } from '../icons/blender';
|
|
471
474
|
export { default as BlindIcon } from '../icons/blind';
|
|
@@ -888,6 +891,8 @@ export { default as CribIcon } from '../icons/crib';
|
|
|
888
891
|
export { default as CrisisAlertIcon } from '../icons/crisis_alert';
|
|
889
892
|
export { default as CropIcon } from '../icons/crop';
|
|
890
893
|
export { default as Crop169Icon } from '../icons/crop_16_9';
|
|
894
|
+
export { default as Crop23Icon } from '../icons/crop_2_3';
|
|
895
|
+
export { default as Crop219Icon } from '../icons/crop_21_9';
|
|
891
896
|
export { default as Crop32Icon } from '../icons/crop_3_2';
|
|
892
897
|
export { default as Crop54Icon } from '../icons/crop_5_4';
|
|
893
898
|
export { default as Crop75Icon } from '../icons/crop_7_5';
|
|
@@ -1566,6 +1571,7 @@ export { default as Gif2Icon } from '../icons/gif_2';
|
|
|
1566
1571
|
export { default as GifBoxIcon } from '../icons/gif_box';
|
|
1567
1572
|
export { default as GirlIcon } from '../icons/girl';
|
|
1568
1573
|
export { default as GiteIcon } from '../icons/gite';
|
|
1574
|
+
export { default as GitlabIcon } from '../icons/gitlab';
|
|
1569
1575
|
export { default as GlassCupIcon } from '../icons/glass_cup';
|
|
1570
1576
|
export { default as GlobeIcon } from '../icons/globe';
|
|
1571
1577
|
export { default as Globe2CancelIcon } from '../icons/globe_2_cancel';
|
|
@@ -1805,6 +1811,7 @@ export { default as InkEraserIcon } from '../icons/ink_eraser';
|
|
|
1805
1811
|
export { default as InkEraserOffIcon } from '../icons/ink_eraser_off';
|
|
1806
1812
|
export { default as InkHighlighterIcon } from '../icons/ink_highlighter';
|
|
1807
1813
|
export { default as InkHighlighterMoveIcon } from '../icons/ink_highlighter_move';
|
|
1814
|
+
export { default as InkHighlighterOffIcon } from '../icons/ink_highlighter_off';
|
|
1808
1815
|
export { default as InkMarkerIcon } from '../icons/ink_marker';
|
|
1809
1816
|
export { default as InkPenIcon } from '../icons/ink_pen';
|
|
1810
1817
|
export { default as InkSelectionIcon } from '../icons/ink_selection';
|
|
@@ -3477,6 +3484,8 @@ export { default as TibiaAltIcon } from '../icons/tibia_alt';
|
|
|
3477
3484
|
export { default as TileLargeIcon } from '../icons/tile_large';
|
|
3478
3485
|
export { default as TileMediumIcon } from '../icons/tile_medium';
|
|
3479
3486
|
export { default as TileSmallIcon } from '../icons/tile_small';
|
|
3487
|
+
export { default as TiltArrowDownIcon } from '../icons/tilt_arrow_down';
|
|
3488
|
+
export { default as TiltArrowUpIcon } from '../icons/tilt_arrow_up';
|
|
3480
3489
|
export { default as TimeAutoIcon } from '../icons/time_auto';
|
|
3481
3490
|
export { default as TimelapseIcon } from '../icons/timelapse';
|
|
3482
3491
|
export { default as TimelineIcon } from '../icons/timeline';
|
|
@@ -3664,6 +3673,8 @@ export { default as VideoCameraFrontIcon } from '../icons/video_camera_front';
|
|
|
3664
3673
|
export { default as VideoCameraFrontOffIcon } from '../icons/video_camera_front_off';
|
|
3665
3674
|
export { default as VideoChatIcon } from '../icons/video_chat';
|
|
3666
3675
|
export { default as VideoFileIcon } from '../icons/video_file';
|
|
3676
|
+
export { default as VideoFrameCopyIcon } from '../icons/video_frame_copy';
|
|
3677
|
+
export { default as VideoFrameSaveIcon } from '../icons/video_frame_save';
|
|
3667
3678
|
export { default as VideoLabelIcon } from '../icons/video_label';
|
|
3668
3679
|
export { default as VideoLibraryIcon } from '../icons/video_library';
|
|
3669
3680
|
export { default as VideoSearchIcon } from '../icons/video_search';
|
|
@@ -3747,6 +3758,7 @@ export { default as WatchIcon } from '../icons/watch';
|
|
|
3747
3758
|
export { default as WatchAlertIcon } from '../icons/watch_alert';
|
|
3748
3759
|
export { default as WatchArrowIcon } from '../icons/watch_arrow';
|
|
3749
3760
|
export { default as WatchArrowDownIcon } from '../icons/watch_arrow_down';
|
|
3761
|
+
export { default as WatchButtonIcon } from '../icons/watch_button';
|
|
3750
3762
|
export { default as WatchButtonPressIcon } from '../icons/watch_button_press';
|
|
3751
3763
|
export { default as WatchCheckIcon } from '../icons/watch_check';
|
|
3752
3764
|
export { default as WatchLockIcon } from '../icons/watch_lock';
|
|
@@ -3781,6 +3793,7 @@ export { default as WbIridescentIcon } from '../icons/wb_iridescent';
|
|
|
3781
3793
|
export { default as WbShadeIcon } from '../icons/wb_shade';
|
|
3782
3794
|
export { default as WbSunnyIcon } from '../icons/wb_sunny';
|
|
3783
3795
|
export { default as WbTwilightIcon } from '../icons/wb_twilight';
|
|
3796
|
+
export { default as WbTwilight2Icon } from '../icons/wb_twilight_2';
|
|
3784
3797
|
export { default as WcIcon } from '../icons/wc';
|
|
3785
3798
|
export { default as WeatherHailIcon } from '../icons/weather_hail';
|
|
3786
3799
|
export { default as WeatherMixIcon } from '../icons/weather_mix';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @preview 
|
|
3
|
+
*/
|
|
4
|
+
declare const _2d2: import("..").CdxIcon;
|
|
5
|
+
export default _2d2;
|
|
6
|
+
//# sourceMappingURL=2d_2.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @preview 
|
|
3
|
+
*/
|
|
4
|
+
declare const _3d2: import("..").CdxIcon;
|
|
5
|
+
export default _3d2;
|
|
6
|
+
//# sourceMappingURL=3d_2.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @preview 
|
|
3
|
+
*/
|
|
4
|
+
declare const Bitbucket: import("..").CdxIcon;
|
|
5
|
+
export default Bitbucket;
|
|
6
|
+
//# sourceMappingURL=bitbucket.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @preview 
|
|
3
|
+
*/
|
|
4
|
+
declare const Crop219: import("..").CdxIcon;
|
|
5
|
+
export default Crop219;
|
|
6
|
+
//# sourceMappingURL=crop_21_9.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @preview 
|
|
3
|
+
*/
|
|
4
|
+
declare const Crop23: import("..").CdxIcon;
|
|
5
|
+
export default Crop23;
|
|
6
|
+
//# sourceMappingURL=crop_2_3.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @preview 
|
|
3
|
+
*/
|
|
4
|
+
declare const Gitlab: import("..").CdxIcon;
|
|
5
|
+
export default Gitlab;
|
|
6
|
+
//# sourceMappingURL=gitlab.d.ts.map
|
|
@@ -22,6 +22,7 @@ export { default as _23mp } from './23mp';
|
|
|
22
22
|
export { default as _24fpsSelect } from './24fps_select';
|
|
23
23
|
export { default as _24mp } from './24mp';
|
|
24
24
|
export { default as _2d } from './2d';
|
|
25
|
+
export { default as _2d2 } from './2d_2';
|
|
25
26
|
export { default as _2k } from './2k';
|
|
26
27
|
export { default as _2kPlus } from './2k_plus';
|
|
27
28
|
export { default as _2mp } from './2mp';
|
|
@@ -29,6 +30,7 @@ export { default as _30fps } from './30fps';
|
|
|
29
30
|
export { default as _30fpsSelect } from './30fps_select';
|
|
30
31
|
export { default as _360 } from './360';
|
|
31
32
|
export { default as _3d } from './3d';
|
|
33
|
+
export { default as _3d2 } from './3d_2';
|
|
32
34
|
export { default as _3dRotation } from './3d_rotation';
|
|
33
35
|
export { default as _3gMobiledata } from './3g_mobiledata';
|
|
34
36
|
export { default as _3gMobiledataBadge } from './3g_mobiledata_badge';
|
|
@@ -466,6 +468,7 @@ export { default as BikeDock } from './bike_dock';
|
|
|
466
468
|
export { default as BikeLane } from './bike_lane';
|
|
467
469
|
export { default as BikeScooter } from './bike_scooter';
|
|
468
470
|
export { default as Biotech } from './biotech';
|
|
471
|
+
export { default as Bitbucket } from './bitbucket';
|
|
469
472
|
export { default as Blanket } from './blanket';
|
|
470
473
|
export { default as Blender } from './blender';
|
|
471
474
|
export { default as Blind } from './blind';
|
|
@@ -888,6 +891,8 @@ export { default as Crib } from './crib';
|
|
|
888
891
|
export { default as CrisisAlert } from './crisis_alert';
|
|
889
892
|
export { default as Crop } from './crop';
|
|
890
893
|
export { default as Crop169 } from './crop_16_9';
|
|
894
|
+
export { default as Crop23 } from './crop_2_3';
|
|
895
|
+
export { default as Crop219 } from './crop_21_9';
|
|
891
896
|
export { default as Crop32 } from './crop_3_2';
|
|
892
897
|
export { default as Crop54 } from './crop_5_4';
|
|
893
898
|
export { default as Crop75 } from './crop_7_5';
|
|
@@ -1566,6 +1571,7 @@ export { default as Gif2 } from './gif_2';
|
|
|
1566
1571
|
export { default as GifBox } from './gif_box';
|
|
1567
1572
|
export { default as Girl } from './girl';
|
|
1568
1573
|
export { default as Gite } from './gite';
|
|
1574
|
+
export { default as Gitlab } from './gitlab';
|
|
1569
1575
|
export { default as GlassCup } from './glass_cup';
|
|
1570
1576
|
export { default as Globe } from './globe';
|
|
1571
1577
|
export { default as Globe2Cancel } from './globe_2_cancel';
|
|
@@ -1805,6 +1811,7 @@ export { default as InkEraser } from './ink_eraser';
|
|
|
1805
1811
|
export { default as InkEraserOff } from './ink_eraser_off';
|
|
1806
1812
|
export { default as InkHighlighter } from './ink_highlighter';
|
|
1807
1813
|
export { default as InkHighlighterMove } from './ink_highlighter_move';
|
|
1814
|
+
export { default as InkHighlighterOff } from './ink_highlighter_off';
|
|
1808
1815
|
export { default as InkMarker } from './ink_marker';
|
|
1809
1816
|
export { default as InkPen } from './ink_pen';
|
|
1810
1817
|
export { default as InkSelection } from './ink_selection';
|
|
@@ -3477,6 +3484,8 @@ export { default as TibiaAlt } from './tibia_alt';
|
|
|
3477
3484
|
export { default as TileLarge } from './tile_large';
|
|
3478
3485
|
export { default as TileMedium } from './tile_medium';
|
|
3479
3486
|
export { default as TileSmall } from './tile_small';
|
|
3487
|
+
export { default as TiltArrowDown } from './tilt_arrow_down';
|
|
3488
|
+
export { default as TiltArrowUp } from './tilt_arrow_up';
|
|
3480
3489
|
export { default as TimeAuto } from './time_auto';
|
|
3481
3490
|
export { default as Timelapse } from './timelapse';
|
|
3482
3491
|
export { default as Timeline } from './timeline';
|
|
@@ -3664,6 +3673,8 @@ export { default as VideoCameraFront } from './video_camera_front';
|
|
|
3664
3673
|
export { default as VideoCameraFrontOff } from './video_camera_front_off';
|
|
3665
3674
|
export { default as VideoChat } from './video_chat';
|
|
3666
3675
|
export { default as VideoFile } from './video_file';
|
|
3676
|
+
export { default as VideoFrameCopy } from './video_frame_copy';
|
|
3677
|
+
export { default as VideoFrameSave } from './video_frame_save';
|
|
3667
3678
|
export { default as VideoLabel } from './video_label';
|
|
3668
3679
|
export { default as VideoLibrary } from './video_library';
|
|
3669
3680
|
export { default as VideoSearch } from './video_search';
|
|
@@ -3747,6 +3758,7 @@ export { default as Watch } from './watch';
|
|
|
3747
3758
|
export { default as WatchAlert } from './watch_alert';
|
|
3748
3759
|
export { default as WatchArrow } from './watch_arrow';
|
|
3749
3760
|
export { default as WatchArrowDown } from './watch_arrow_down';
|
|
3761
|
+
export { default as WatchButton } from './watch_button';
|
|
3750
3762
|
export { default as WatchButtonPress } from './watch_button_press';
|
|
3751
3763
|
export { default as WatchCheck } from './watch_check';
|
|
3752
3764
|
export { default as WatchLock } from './watch_lock';
|
|
@@ -3781,6 +3793,7 @@ export { default as WbIridescent } from './wb_iridescent';
|
|
|
3781
3793
|
export { default as WbShade } from './wb_shade';
|
|
3782
3794
|
export { default as WbSunny } from './wb_sunny';
|
|
3783
3795
|
export { default as WbTwilight } from './wb_twilight';
|
|
3796
|
+
export { default as WbTwilight2 } from './wb_twilight_2';
|
|
3784
3797
|
export { default as Wc } from './wc';
|
|
3785
3798
|
export { default as WeatherHail } from './weather_hail';
|
|
3786
3799
|
export { default as WeatherMix } from './weather_mix';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @preview 
|
|
3
|
+
*/
|
|
4
|
+
declare const InkHighlighterOff: import("..").CdxIcon;
|
|
5
|
+
export default InkHighlighterOff;
|
|
6
|
+
//# sourceMappingURL=ink_highlighter_off.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @preview 
|
|
3
|
+
*/
|
|
4
|
+
declare const TiltArrowDown: import("..").CdxIcon;
|
|
5
|
+
export default TiltArrowDown;
|
|
6
|
+
//# sourceMappingURL=tilt_arrow_down.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @preview 
|
|
3
|
+
*/
|
|
4
|
+
declare const TiltArrowUp: import("..").CdxIcon;
|
|
5
|
+
export default TiltArrowUp;
|
|
6
|
+
//# sourceMappingURL=tilt_arrow_up.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @preview 
|
|
3
|
+
*/
|
|
4
|
+
declare const VideoFrameCopy: import("..").CdxIcon;
|
|
5
|
+
export default VideoFrameCopy;
|
|
6
|
+
//# sourceMappingURL=video_frame_copy.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @preview 
|
|
3
|
+
*/
|
|
4
|
+
declare const VideoFrameSave: import("..").CdxIcon;
|
|
5
|
+
export default VideoFrameSave;
|
|
6
|
+
//# sourceMappingURL=video_frame_save.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @preview 
|
|
3
|
+
*/
|
|
4
|
+
declare const WatchButton: import("..").CdxIcon;
|
|
5
|
+
export default WatchButton;
|
|
6
|
+
//# sourceMappingURL=watch_button.d.ts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @preview 
|
|
3
|
+
*/
|
|
4
|
+
declare const WbTwilight2: import("..").CdxIcon;
|
|
5
|
+
export default WbTwilight2;
|
|
6
|
+
//# sourceMappingURL=wb_twilight_2.d.ts.map
|