@vkontakte/icons 2.12.0 → 2.13.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/20/picture_on_square_outline.js +8 -0
- package/dist/28/tag_outline.js +1 -1
- package/dist/56/tag_outline.js +8 -0
- package/dist/es6/20/picture_on_square_outline.js +2 -0
- package/dist/es6/28/tag_outline.js +1 -1
- package/dist/es6/56/tag_outline.js +2 -0
- package/dist/es6/index.js +2 -0
- package/dist/icons-map.json +1 -1
- package/dist/index.js +14 -0
- package/dist/typings/20/picture_on_square_outline.d.ts +12 -0
- package/dist/typings/56/tag_outline.d.ts +12 -0
- package/dist/typings/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/svg/20/picture_on_square_outline_20.svg +1 -0
- package/src/svg/28/tag_outline_28.svg +1 -12
- package/src/svg/56/tag_outline_56.svg +1 -0
- package/ts/20/picture_on_square_outline.ts +24 -0
- package/ts/28/tag_outline.ts +1 -1
- package/ts/56/tag_outline.ts +24 -0
- package/ts/index.ts +2 -0
package/dist/index.js
CHANGED
|
@@ -3944,6 +3944,12 @@ Object.defineProperty(exports, "Icon20PhoneOutline", {
|
|
|
3944
3944
|
return _phoneOutline.default;
|
|
3945
3945
|
}
|
|
3946
3946
|
});
|
|
3947
|
+
Object.defineProperty(exports, "Icon20PictureOnSquareOutline", {
|
|
3948
|
+
enumerable: true,
|
|
3949
|
+
get: function() {
|
|
3950
|
+
return _pictureOnSquareOutline.default;
|
|
3951
|
+
}
|
|
3952
|
+
});
|
|
3947
3953
|
Object.defineProperty(exports, "Icon20PictureOutline", {
|
|
3948
3954
|
enumerable: true,
|
|
3949
3955
|
get: function() {
|
|
@@ -14108,6 +14114,12 @@ Object.defineProperty(exports, "Icon56TabletOutline", {
|
|
|
14108
14114
|
return _tabletOutline.default;
|
|
14109
14115
|
}
|
|
14110
14116
|
});
|
|
14117
|
+
Object.defineProperty(exports, "Icon56TagOutline", {
|
|
14118
|
+
enumerable: true,
|
|
14119
|
+
get: function() {
|
|
14120
|
+
return _tagOutline1.default;
|
|
14121
|
+
}
|
|
14122
|
+
});
|
|
14111
14123
|
Object.defineProperty(exports, "Icon56TearOffFlyerOutline", {
|
|
14112
14124
|
enumerable: true,
|
|
14113
14125
|
get: function() {
|
|
@@ -14945,6 +14957,7 @@ var _phoneCircleFillGreen = _interopRequireDefault(require("./20/phone_circle_fi
|
|
|
14945
14957
|
var _phoneDown = _interopRequireDefault(require("./20/phone_down"));
|
|
14946
14958
|
var _phoneDownOutline = _interopRequireDefault(require("./20/phone_down_outline"));
|
|
14947
14959
|
var _phoneOutline = _interopRequireDefault(require("./20/phone_outline"));
|
|
14960
|
+
var _pictureOnSquareOutline = _interopRequireDefault(require("./20/picture_on_square_outline"));
|
|
14948
14961
|
var _pictureOutline1 = _interopRequireDefault(require("./20/picture_outline"));
|
|
14949
14962
|
var _picturePlusOutline = _interopRequireDefault(require("./20/picture_plus_outline"));
|
|
14950
14963
|
var _pictureStack = _interopRequireDefault(require("./20/picture_stack"));
|
|
@@ -16638,6 +16651,7 @@ var _stopwatchOutline1 = _interopRequireDefault(require("./56/stopwatch_outline"
|
|
|
16638
16651
|
var _storyCircleFillYellow1 = _interopRequireDefault(require("./56/story_circle_fill_yellow"));
|
|
16639
16652
|
var _storyOutline6 = _interopRequireDefault(require("./56/story_outline"));
|
|
16640
16653
|
var _tabletOutline = _interopRequireDefault(require("./56/tablet_outline"));
|
|
16654
|
+
var _tagOutline1 = _interopRequireDefault(require("./56/tag_outline"));
|
|
16641
16655
|
var _tearOffFlyerOutline6 = _interopRequireDefault(require("./56/tear_off_flyer_outline"));
|
|
16642
16656
|
var _textLiveOutline3 = _interopRequireDefault(require("./56/text_live_outline"));
|
|
16643
16657
|
var _thumbsDownOutline3 = _interopRequireDefault(require("./56/thumbs_down_outline"));
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SVGProps, Ref } from 'react';
|
|
2
|
+
export interface Icon20PictureOnSquareOutlineProps extends SVGProps<SVGSVGElement> {
|
|
3
|
+
fill?: string;
|
|
4
|
+
width?: number;
|
|
5
|
+
height?: number;
|
|
6
|
+
getRootRef?: Ref<SVGSVGElement>;
|
|
7
|
+
title?: string;
|
|
8
|
+
deprecated?: boolean;
|
|
9
|
+
replacement?: string;
|
|
10
|
+
}
|
|
11
|
+
declare const _default: import("react").FC<Icon20PictureOnSquareOutlineProps>;
|
|
12
|
+
export default _default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SVGProps, Ref } from 'react';
|
|
2
|
+
export interface Icon56TagOutlineProps extends SVGProps<SVGSVGElement> {
|
|
3
|
+
fill?: string;
|
|
4
|
+
width?: number;
|
|
5
|
+
height?: number;
|
|
6
|
+
getRootRef?: Ref<SVGSVGElement>;
|
|
7
|
+
title?: string;
|
|
8
|
+
deprecated?: boolean;
|
|
9
|
+
replacement?: string;
|
|
10
|
+
}
|
|
11
|
+
declare const _default: import("react").FC<Icon56TagOutlineProps>;
|
|
12
|
+
export default _default;
|
package/dist/typings/index.d.ts
CHANGED
|
@@ -655,6 +655,7 @@ export { default as Icon20PhoneCircleFillGreen } from './20/phone_circle_fill_gr
|
|
|
655
655
|
export { default as Icon20PhoneDown } from './20/phone_down';
|
|
656
656
|
export { default as Icon20PhoneDownOutline } from './20/phone_down_outline';
|
|
657
657
|
export { default as Icon20PhoneOutline } from './20/phone_outline';
|
|
658
|
+
export { default as Icon20PictureOnSquareOutline } from './20/picture_on_square_outline';
|
|
658
659
|
export { default as Icon20PictureOutline } from './20/picture_outline';
|
|
659
660
|
export { default as Icon20PicturePlusOutline } from './20/picture_plus_outline';
|
|
660
661
|
export { default as Icon20PictureStack } from './20/picture_stack';
|
|
@@ -2349,6 +2350,7 @@ export { default as Icon56StopwatchOutline } from './56/stopwatch_outline';
|
|
|
2349
2350
|
export { default as Icon56StoryCircleFillYellow } from './56/story_circle_fill_yellow';
|
|
2350
2351
|
export { default as Icon56StoryOutline } from './56/story_outline';
|
|
2351
2352
|
export { default as Icon56TabletOutline } from './56/tablet_outline';
|
|
2353
|
+
export { default as Icon56TagOutline } from './56/tag_outline';
|
|
2352
2354
|
export { default as Icon56TearOffFlyerOutline } from './56/tear_off_flyer_outline';
|
|
2353
2355
|
export { default as Icon56TextLiveOutline } from './56/text_live_outline';
|
|
2354
2356
|
export { default as Icon56ThumbsDownOutline } from './56/thumbs_down_outline';
|
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="evenodd" d="M11.38 3.5H5.878a4 4 0 0 1 1.306-1.064C8.04 2 9.16 2 11.4 2h.2c2.24 0 3.36 0 4.216.436a4 4 0 0 1 1.748 1.748C18 5.039 18 6.159 18 8.4v.2c0 2.24 0 3.36-.436 4.216a4 4 0 0 1-1.064 1.306V8.62c0-1.793 0-2.689-.349-3.373a3.2 3.2 0 0 0-1.398-1.399c-.685-.348-1.58-.348-3.373-.348Zm-1.5 3H7.12c-.921 0-1.521.001-1.98.039-.44.036-.616.098-.712.146a1.7 1.7 0 0 0-.743.743c-.049.096-.11.272-.147.712-.037.46-.038 1.06-.038 1.98v2.76c0 .92 0 1.521.038 1.98.036.44.098.616.147.712.163.32.423.58.743.743.096.048.271.11.712.146.459.038 1.059.039 1.98.039h2.76c.92 0 1.521-.001 1.98-.039.44-.036.616-.098.712-.146a1.7 1.7 0 0 0 .743-.743c.048-.096.11-.271.146-.712.038-.459.039-1.06.039-1.98v-2.76c0-.92-.001-1.521-.039-1.98-.036-.44-.098-.616-.146-.712a1.7 1.7 0 0 0-.743-.743c-.096-.048-.272-.11-.713-.146-.458-.038-1.058-.039-1.98-.039Zm-7.531.247c-.35.685-.35 1.58-.35 3.373v2.76c0 1.792 0 2.688.35 3.373a3.2 3.2 0 0 0 1.398 1.398C4.431 18 5.327 18 7.12 18h2.76c1.792 0 2.688 0 3.372-.349a3.2 3.2 0 0 0 1.399-1.398c.349-.685.349-1.58.349-3.373v-2.76c0-1.792 0-2.688-.349-3.373a3.2 3.2 0 0 0-1.399-1.398C12.569 5 11.672 5 9.88 5H7.12c-1.792 0-2.689 0-3.373.349a3.2 3.2 0 0 0-1.398 1.398ZM6.6 12.631l1.353 1.583L9.847 11.5l2.097 3.06a.272.272 0 0 1-.215.438H5.272a.272.272 0 0 1-.212-.442l1.54-1.925Z" clip-rule="evenodd"/></svg>
|
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
<svg width="28px" height="28px" viewBox="0 0 28 28" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
-
<!-- Generator: Sketch 63.1 (92452) - https://sketch.com -->
|
|
4
|
-
<title>tag_outline_28</title>
|
|
5
|
-
<desc>Created with Sketch.</desc>
|
|
6
|
-
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
7
|
-
<g id="tag_outline_28">
|
|
8
|
-
<rect x="0" y="0" width="28" height="28"></rect>
|
|
9
|
-
<path d="M23.3533879,19.0099555 L18.6919953,23.6108759 C16.800943,25.4773956 13.7608773,25.4773956 11.8698251,23.6108759 L4.95452734,16.7852903 C3.70394793,15.5509346 2.99999973,13.8670221 2.99999973,12.1098702 L2.99999973,7.85580846 C2.99999973,5.1740195 5.17401923,3 7.85580819,3 L12.263375,3 C13.9908027,3 15.6487164,3.68039829 16.8781409,4.89387345 L23.3533879,11.2851172 C25.4865431,13.390599 25.5089768,16.8266932 23.403495,18.9598484 C23.3785505,18.985011 23.3785505,18.985011 23.3533879,19.0099555 Z M21.9484375,17.5865391 L21.9800786,17.554898 C23.3096277,16.2078739 23.2954615,14.0380827 21.9484375,12.7085336 L15.4731904,6.31728985 C14.6180603,5.47325325 13.4648929,5 12.263375,5 L7.85580819,5 C6.27858873,5 4.99999973,6.278589 4.99999973,7.85580846 L4.99999973,12.1098702 C4.99999973,13.3320629 5.48963319,14.5033138 6.35947778,15.3618739 L13.2747755,22.1874595 C14.3869452,23.2852011 16.1748752,23.2852011 17.2870449,22.1874595 L21.9484375,17.5865391 Z M9.99999973,12 C8.89543023,12 7.99999973,11.1045695 7.99999973,10 C7.99999973,8.8954305 8.89543023,8 9.99999973,8 C11.1045692,8 11.9999997,8.8954305 11.9999997,10 C11.9999997,11.1045695 11.1045692,12 9.99999973,12 Z" id="↳-Icon-Color" fill="currentColor" fill-rule="nonzero"></path>
|
|
10
|
-
</g>
|
|
11
|
-
</g>
|
|
12
|
-
</svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" fill="currentColor" viewBox="0 0 28 28"><path d="M10 12a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"/><path fill-rule="evenodd" d="M5.821 17.861c-1.04-1.04-1.562-1.561-1.934-2.168a6.02 6.02 0 0 1-.72-1.74C3 13.26 3 12.523 3 11.05v-.828c0-2.529 0-3.793.492-4.758a4.514 4.514 0 0 1 1.973-1.973C6.43 3 7.695 3 10.223 3h.826c1.473 0 2.209 0 2.902.166a6.044 6.044 0 0 1 1.74.721c.607.372 1.128.893 2.169 1.934l3.543 3.545c1.987 1.986 2.98 2.98 3.352 4.125a5.015 5.015 0 0 1 0 3.1c-.373 1.145-1.366 2.138-3.353 4.124l-.689.689c-1.986 1.986-2.98 2.979-4.124 3.35a5.017 5.017 0 0 1-3.1 0c-1.145-.372-2.138-1.364-4.125-3.35L5.821 17.86ZM16.445 7.235l3.544 3.545c1.017 1.016 1.693 1.695 2.17 2.258.463.545.622.849.694 1.07a3.016 3.016 0 0 1 0 1.864c-.073.222-.231.526-.694 1.07-.478.564-1.154 1.242-2.17 2.258l-.69.69c-1.016 1.016-1.695 1.692-2.258 2.17-.545.462-.849.62-1.07.692a3.016 3.016 0 0 1-1.864 0c-.222-.072-.526-.23-1.07-.692-.564-.478-1.242-1.154-2.259-2.17l-3.543-3.543c-1.108-1.108-1.423-1.441-1.643-1.8a4.018 4.018 0 0 1-.48-1.161c-.1-.41-.112-.867-.112-2.435v-.828c0-1.297.002-2.15.055-2.802.051-.63.14-.894.219-1.048a2.514 2.514 0 0 1 1.099-1.099c.154-.078.419-.168 1.048-.22C8.073 5.003 8.926 5 10.223 5h.826c1.568 0 2.026.013 2.435.111.41.099.802.261 1.162.481.358.22.691.535 1.8 1.643Z" clip-rule="evenodd"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="56" height="56" fill="currentColor" viewBox="0 0 56 56"><path d="M20 24a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z"/><path fill-rule="evenodd" d="M12.583 36.663c-2.43-2.429-3.644-3.643-4.513-5.06a14.044 14.044 0 0 1-1.682-4.06C6 25.925 6 24.207 6 20.772V18.84c0-4.494 0-6.742.875-8.458a8.026 8.026 0 0 1 3.507-3.507C12.099 6 14.346 6 18.841 6h1.927c3.436 0 5.154 0 6.77.388a14.03 14.03 0 0 1 4.06 1.682c1.418.869 2.633 2.083 5.062 4.513l6.147 6.148c3.972 3.973 5.958 5.96 6.702 8.25a10.03 10.03 0 0 1 0 6.2c-.745 2.29-2.731 4.276-6.704 8.249l-1.379 1.377c-3.972 3.972-5.958 5.958-8.249 6.702a10.032 10.032 0 0 1-6.2 0c-2.29-.744-4.276-2.73-8.248-6.702l-6.146-6.144Zm21.955-21.959 6.147 6.148c2.021 2.022 3.408 3.412 4.396 4.576.966 1.138 1.374 1.861 1.575 2.48a7.03 7.03 0 0 1 0 4.346c-.201.618-.61 1.341-1.575 2.479-.989 1.164-2.376 2.554-4.397 4.575l-1.379 1.378c-2.02 2.02-3.41 3.407-4.575 4.395-1.138.966-1.861 1.374-2.48 1.575a7.032 7.032 0 0 1-4.345 0c-.619-.201-1.342-.609-2.48-1.575-1.164-.988-2.554-2.374-4.575-4.395l-6.146-6.144c-2.53-2.53-3.436-3.463-4.076-4.508a11.046 11.046 0 0 1-1.323-3.192C9.02 25.652 9 24.35 9 20.772V18.84c0-2.296.002-3.839.1-5.026.094-1.153.262-1.705.448-2.07a5.025 5.025 0 0 1 2.196-2.196c.365-.186.917-.354 2.07-.449C15.002 9.002 16.544 9 18.841 9h1.927c3.579 0 4.879.02 6.07.305a11.03 11.03 0 0 1 3.193 1.323c1.044.64 1.977 1.546 4.507 4.076Z" clip-rule="evenodd"/></svg>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { SVGProps, Ref } from 'react';
|
|
2
|
+
import { makeIcon } from '../SvgIcon';
|
|
3
|
+
|
|
4
|
+
export interface Icon20PictureOnSquareOutlineProps extends SVGProps<SVGSVGElement> {
|
|
5
|
+
fill?: string;
|
|
6
|
+
width?: number;
|
|
7
|
+
height?: number;
|
|
8
|
+
getRootRef?: Ref<SVGSVGElement>;
|
|
9
|
+
title?: string;
|
|
10
|
+
deprecated?: boolean;
|
|
11
|
+
replacement?: string;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
export default makeIcon<Icon20PictureOnSquareOutlineProps>(
|
|
16
|
+
'Icon20PictureOnSquareOutline',
|
|
17
|
+
'picture_on_square_outline_20',
|
|
18
|
+
'0 0 20 20',
|
|
19
|
+
'<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20" id="picture_on_square_outline_20"><path fill-rule="evenodd" d="M11.38 3.5H5.878a4 4 0 0 1 1.306-1.064C8.04 2 9.16 2 11.4 2h.2c2.24 0 3.36 0 4.216.436a4 4 0 0 1 1.748 1.748C18 5.039 18 6.159 18 8.4v.2c0 2.24 0 3.36-.436 4.216a4 4 0 0 1-1.064 1.306V8.62c0-1.793 0-2.689-.349-3.373a3.2 3.2 0 0 0-1.398-1.399c-.685-.348-1.58-.348-3.373-.348Zm-1.5 3H7.12c-.921 0-1.521.001-1.98.039-.44.036-.616.098-.712.146a1.7 1.7 0 0 0-.743.743c-.049.096-.11.272-.147.712-.037.46-.038 1.06-.038 1.98v2.76c0 .92 0 1.521.038 1.98.036.44.098.616.147.712.163.32.423.58.743.743.096.048.271.11.712.146.459.038 1.059.039 1.98.039h2.76c.92 0 1.521-.001 1.98-.039.44-.036.616-.098.712-.146a1.7 1.7 0 0 0 .743-.743c.048-.096.11-.271.146-.712.038-.459.039-1.06.039-1.98v-2.76c0-.92-.001-1.521-.039-1.98-.036-.44-.098-.616-.146-.712a1.7 1.7 0 0 0-.743-.743c-.096-.048-.272-.11-.713-.146-.458-.038-1.058-.039-1.98-.039Zm-7.531.247c-.35.685-.35 1.58-.35 3.373v2.76c0 1.792 0 2.688.35 3.373a3.2 3.2 0 0 0 1.398 1.398C4.431 18 5.327 18 7.12 18h2.76c1.792 0 2.688 0 3.372-.349a3.2 3.2 0 0 0 1.399-1.398c.349-.685.349-1.58.349-3.373v-2.76c0-1.792 0-2.688-.349-3.373a3.2 3.2 0 0 0-1.399-1.398C12.569 5 11.672 5 9.88 5H7.12c-1.792 0-2.689 0-3.373.349a3.2 3.2 0 0 0-1.398 1.398ZM6.6 12.631l1.353 1.583L9.847 11.5l2.097 3.06a.272.272 0 0 1-.215.438H5.272a.272.272 0 0 1-.212-.442l1.54-1.925Z" clip-rule="evenodd" /></symbol>',
|
|
20
|
+
20,
|
|
21
|
+
20,
|
|
22
|
+
false,
|
|
23
|
+
undefined
|
|
24
|
+
);
|
package/ts/28/tag_outline.ts
CHANGED
|
@@ -16,7 +16,7 @@ export default makeIcon<Icon28TagOutlineProps>(
|
|
|
16
16
|
'Icon28TagOutline',
|
|
17
17
|
'tag_outline_28',
|
|
18
18
|
'0 0 28 28',
|
|
19
|
-
'<symbol
|
|
19
|
+
'<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 28 28" id="tag_outline_28"><path d="M10 12a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z" /><path fill-rule="evenodd" d="M5.821 17.861c-1.04-1.04-1.562-1.561-1.934-2.168a6.02 6.02 0 0 1-.72-1.74C3 13.26 3 12.523 3 11.05v-.828c0-2.529 0-3.793.492-4.758a4.514 4.514 0 0 1 1.973-1.973C6.43 3 7.695 3 10.223 3h.826c1.473 0 2.209 0 2.902.166a6.044 6.044 0 0 1 1.74.721c.607.372 1.128.893 2.169 1.934l3.543 3.545c1.987 1.986 2.98 2.98 3.352 4.125a5.015 5.015 0 0 1 0 3.1c-.373 1.145-1.366 2.138-3.353 4.124l-.689.689c-1.986 1.986-2.98 2.979-4.124 3.35a5.017 5.017 0 0 1-3.1 0c-1.145-.372-2.138-1.364-4.125-3.35L5.821 17.86ZM16.445 7.235l3.544 3.545c1.017 1.016 1.693 1.695 2.17 2.258.463.545.622.849.694 1.07a3.016 3.016 0 0 1 0 1.864c-.073.222-.231.526-.694 1.07-.478.564-1.154 1.242-2.17 2.258l-.69.69c-1.016 1.016-1.695 1.692-2.258 2.17-.545.462-.849.62-1.07.692a3.016 3.016 0 0 1-1.864 0c-.222-.072-.526-.23-1.07-.692-.564-.478-1.242-1.154-2.259-2.17l-3.543-3.543c-1.108-1.108-1.423-1.441-1.643-1.8a4.018 4.018 0 0 1-.48-1.161c-.1-.41-.112-.867-.112-2.435v-.828c0-1.297.002-2.15.055-2.802.051-.63.14-.894.219-1.048a2.514 2.514 0 0 1 1.099-1.099c.154-.078.419-.168 1.048-.22C8.073 5.003 8.926 5 10.223 5h.826c1.568 0 2.026.013 2.435.111.41.099.802.261 1.162.481.358.22.691.535 1.8 1.643Z" clip-rule="evenodd" /></symbol>',
|
|
20
20
|
28,
|
|
21
21
|
28,
|
|
22
22
|
false,
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { SVGProps, Ref } from 'react';
|
|
2
|
+
import { makeIcon } from '../SvgIcon';
|
|
3
|
+
|
|
4
|
+
export interface Icon56TagOutlineProps extends SVGProps<SVGSVGElement> {
|
|
5
|
+
fill?: string;
|
|
6
|
+
width?: number;
|
|
7
|
+
height?: number;
|
|
8
|
+
getRootRef?: Ref<SVGSVGElement>;
|
|
9
|
+
title?: string;
|
|
10
|
+
deprecated?: boolean;
|
|
11
|
+
replacement?: string;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
export default makeIcon<Icon56TagOutlineProps>(
|
|
16
|
+
'Icon56TagOutline',
|
|
17
|
+
'tag_outline_56',
|
|
18
|
+
'0 0 56 56',
|
|
19
|
+
'<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 56 56" id="tag_outline_56"><path d="M20 24a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z" /><path fill-rule="evenodd" d="M12.583 36.663c-2.43-2.429-3.644-3.643-4.513-5.06a14.044 14.044 0 0 1-1.682-4.06C6 25.925 6 24.207 6 20.772V18.84c0-4.494 0-6.742.875-8.458a8.026 8.026 0 0 1 3.507-3.507C12.099 6 14.346 6 18.841 6h1.927c3.436 0 5.154 0 6.77.388a14.03 14.03 0 0 1 4.06 1.682c1.418.869 2.633 2.083 5.062 4.513l6.147 6.148c3.972 3.973 5.958 5.96 6.702 8.25a10.03 10.03 0 0 1 0 6.2c-.745 2.29-2.731 4.276-6.704 8.249l-1.379 1.377c-3.972 3.972-5.958 5.958-8.249 6.702a10.032 10.032 0 0 1-6.2 0c-2.29-.744-4.276-2.73-8.248-6.702l-6.146-6.144Zm21.955-21.959 6.147 6.148c2.021 2.022 3.408 3.412 4.396 4.576.966 1.138 1.374 1.861 1.575 2.48a7.03 7.03 0 0 1 0 4.346c-.201.618-.61 1.341-1.575 2.479-.989 1.164-2.376 2.554-4.397 4.575l-1.379 1.378c-2.02 2.02-3.41 3.407-4.575 4.395-1.138.966-1.861 1.374-2.48 1.575a7.032 7.032 0 0 1-4.345 0c-.619-.201-1.342-.609-2.48-1.575-1.164-.988-2.554-2.374-4.575-4.395l-6.146-6.144c-2.53-2.53-3.436-3.463-4.076-4.508a11.046 11.046 0 0 1-1.323-3.192C9.02 25.652 9 24.35 9 20.772V18.84c0-2.296.002-3.839.1-5.026.094-1.153.262-1.705.448-2.07a5.025 5.025 0 0 1 2.196-2.196c.365-.186.917-.354 2.07-.449C15.002 9.002 16.544 9 18.841 9h1.927c3.579 0 4.879.02 6.07.305a11.03 11.03 0 0 1 3.193 1.323c1.044.64 1.977 1.546 4.507 4.076Z" clip-rule="evenodd" /></symbol>',
|
|
20
|
+
56,
|
|
21
|
+
56,
|
|
22
|
+
false,
|
|
23
|
+
undefined
|
|
24
|
+
);
|
package/ts/index.ts
CHANGED
|
@@ -655,6 +655,7 @@ export { default as Icon20PhoneCircleFillGreen } from './20/phone_circle_fill_gr
|
|
|
655
655
|
export { default as Icon20PhoneDown } from './20/phone_down';
|
|
656
656
|
export { default as Icon20PhoneDownOutline } from './20/phone_down_outline';
|
|
657
657
|
export { default as Icon20PhoneOutline } from './20/phone_outline';
|
|
658
|
+
export { default as Icon20PictureOnSquareOutline } from './20/picture_on_square_outline';
|
|
658
659
|
export { default as Icon20PictureOutline } from './20/picture_outline';
|
|
659
660
|
export { default as Icon20PicturePlusOutline } from './20/picture_plus_outline';
|
|
660
661
|
export { default as Icon20PictureStack } from './20/picture_stack';
|
|
@@ -2349,6 +2350,7 @@ export { default as Icon56StopwatchOutline } from './56/stopwatch_outline';
|
|
|
2349
2350
|
export { default as Icon56StoryCircleFillYellow } from './56/story_circle_fill_yellow';
|
|
2350
2351
|
export { default as Icon56StoryOutline } from './56/story_outline';
|
|
2351
2352
|
export { default as Icon56TabletOutline } from './56/tablet_outline';
|
|
2353
|
+
export { default as Icon56TagOutline } from './56/tag_outline';
|
|
2352
2354
|
export { default as Icon56TearOffFlyerOutline } from './56/tear_off_flyer_outline';
|
|
2353
2355
|
export { default as Icon56TextLiveOutline } from './56/text_live_outline';
|
|
2354
2356
|
export { default as Icon56ThumbsDownOutline } from './56/thumbs_down_outline';
|