@vkontakte/icons 2.151.0 → 2.152.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/24/hearts_2_24.d.ts +13 -0
- package/dist/24/hearts_2_24.js +13 -0
- package/dist/24/rocket_24.d.ts +13 -0
- package/dist/24/rocket_24.js +13 -0
- package/dist/28/logo_vk_adblogger_outline_28.d.ts +13 -0
- package/dist/28/logo_vk_adblogger_outline_28.js +13 -0
- package/dist/28/rocket_28.d.ts +13 -0
- package/dist/28/rocket_28.js +13 -0
- package/dist/icons-map.json +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.js +16 -0
- package/dist/typings/24/hearts_2_24.d.ts +13 -0
- package/dist/typings/24/rocket_24.d.ts +13 -0
- package/dist/typings/28/logo_vk_adblogger_outline_28.d.ts +13 -0
- package/dist/typings/28/rocket_28.d.ts +13 -0
- package/dist/typings/index.d.ts +4 -0
- package/dist_es6/24/hearts_2_24.d.ts +13 -0
- package/dist_es6/24/hearts_2_24.js +3 -0
- package/dist_es6/24/rocket_24.d.ts +13 -0
- package/dist_es6/24/rocket_24.js +3 -0
- package/dist_es6/28/logo_vk_adblogger_outline_28.d.ts +13 -0
- package/dist_es6/28/logo_vk_adblogger_outline_28.js +3 -0
- package/dist_es6/28/rocket_28.d.ts +13 -0
- package/dist_es6/28/rocket_28.js +3 -0
- package/dist_es6/index.d.ts +4 -0
- package/dist_es6/index.js +4 -0
- package/package.json +5 -5
- package/src/svg/24/hearts_2_24.svg +1 -0
- package/src/svg/24/rocket_24.svg +1 -0
- package/src/svg/28/logo_vk_adblogger_outline_28.svg +1 -0
- package/src/svg/28/rocket_28.svg +1 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { SVGProps, Ref, FC } from 'react';
|
|
2
|
+
import { makeIcon } from '@vkontakte/icons-sprite';
|
|
3
|
+
export interface Icon24Hearts2Props extends SVGProps<SVGSVGElement> {
|
|
4
|
+
fill?: string;
|
|
5
|
+
width?: number;
|
|
6
|
+
height?: number;
|
|
7
|
+
getRootRef?: Ref<SVGSVGElement>;
|
|
8
|
+
title?: string;
|
|
9
|
+
deprecated?: boolean;
|
|
10
|
+
replacement?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const Icon24Hearts2: FC<Icon24Hearts2Props> & {
|
|
13
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
"use strict";
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "Icon24Hearts2", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function() {
|
|
9
|
+
return Icon24Hearts2;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _iconssprite = require("@vkontakte/icons-sprite");
|
|
13
|
+
var Icon24Hearts2 = (0, _iconssprite.makeIcon)('Icon24Hearts2', 'hearts_2_24', '0 0 24 24', '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" id="hearts_2_24"><path fill-rule="evenodd" d="M11.353 2C8.932 2 7 4.023 7 6.48q0 .397.043.766c.944.127 1.762.507 2.457 1.001.86-.61 1.907-1.047 3.147-1.047 2.976 0 5.37 2.12 5.994 4.86.942-.8 1.67-1.495 2.198-2.177C21.659 8.822 22 7.787 22 6.479 22 4.023 20.068 2 17.647 2c-1.258 0-2.301.705-3.147 1.674C13.654 2.704 12.61 2 11.353 2M2 13.48C2 11.022 3.932 9 6.353 9c1.258 0 2.301.705 3.147 1.674C10.346 9.704 11.39 9 12.647 9 15.068 9 17 11.023 17 13.48c0 1.307-.34 2.342-1.161 3.403-.774 1-1.98 2.03-3.66 3.378l-1.757 1.413a1.47 1.47 0 0 1-1.844 0L6.82 20.261c-1.678-1.349-2.885-2.377-3.659-3.378C2.341 15.822 2 14.787 2 13.479Z" clip-rule="evenodd" /></symbol>', 24, 24, false, undefined);
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { SVGProps, Ref, FC } from 'react';
|
|
2
|
+
import { makeIcon } from '@vkontakte/icons-sprite';
|
|
3
|
+
export interface Icon24RocketProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
fill?: string;
|
|
5
|
+
width?: number;
|
|
6
|
+
height?: number;
|
|
7
|
+
getRootRef?: Ref<SVGSVGElement>;
|
|
8
|
+
title?: string;
|
|
9
|
+
deprecated?: boolean;
|
|
10
|
+
replacement?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const Icon24Rocket: FC<Icon24RocketProps> & {
|
|
13
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
"use strict";
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "Icon24Rocket", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function() {
|
|
9
|
+
return Icon24Rocket;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _iconssprite = require("@vkontakte/icons-sprite");
|
|
13
|
+
var Icon24Rocket = (0, _iconssprite.makeIcon)('Icon24Rocket', 'rocket_24', '0 0 24 24', '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" id="rocket_24"><path fill-rule="evenodd" d="M9.715 16.743c1.229 1.23 5.326-1.229 7.784-3.687 4.916-4.916 4.916-9.833 4.097-10.652-.82-.82-5.736-.82-10.652 4.097-2.458 2.458-4.916 6.555-3.687 7.784zm5.759-8.218a1.544 1.544 0 1 0 2.183-2.184 1.544 1.544 0 0 0-2.183 2.184M7.393 20.248c-1.12 1.12-3.53 1.379-4.585 1.438a.464.464 0 0 1-.495-.494c.06-1.056.32-3.466 1.439-4.585a2.575 2.575 0 0 1 3.641 3.641m-2.264-7.523c.268.108.564-.085.61-.37.133-.824.482-1.694.902-2.507.594-1.148 1.422-2.356 2.321-3.434.259-.31.096-.792-.3-.867l-1.03-.196a1.03 1.03 0 0 0-.92.284l-4.408 4.407a1.03 1.03 0 0 0 .344 1.684l2.48 1Zm6.146 6.146c-.108-.268.085-.564.371-.61.823-.133 1.693-.482 2.506-.902 1.148-.594 2.356-1.422 3.434-2.321.31-.259.792-.096.867.3l.196 1.03a1.03 1.03 0 0 1-.284.92l-4.407 4.408a1.03 1.03 0 0 1-1.684-.344l-1-2.48Z" /></symbol>', 24, 24, false, undefined);
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { SVGProps, Ref, FC } from 'react';
|
|
2
|
+
import { makeIcon } from '@vkontakte/icons-sprite';
|
|
3
|
+
export interface Icon28LogoVkAdbloggerOutlineProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
fill?: string;
|
|
5
|
+
width?: number;
|
|
6
|
+
height?: number;
|
|
7
|
+
getRootRef?: Ref<SVGSVGElement>;
|
|
8
|
+
title?: string;
|
|
9
|
+
deprecated?: boolean;
|
|
10
|
+
replacement?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const Icon28LogoVkAdbloggerOutline: FC<Icon28LogoVkAdbloggerOutlineProps> & {
|
|
13
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
"use strict";
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "Icon28LogoVkAdbloggerOutline", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function() {
|
|
9
|
+
return Icon28LogoVkAdbloggerOutline;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _iconssprite = require("@vkontakte/icons-sprite");
|
|
13
|
+
var Icon28LogoVkAdbloggerOutline = (0, _iconssprite.makeIcon)('Icon28LogoVkAdbloggerOutline', 'logo_vk_adblogger_outline_28', '0 0 28 28', '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 28 28" id="logo_vk_adblogger_outline_28"><path fill-rule="evenodd" d="M12.009 9.013a1.36 1.36 0 0 0-.755.111l-.002.001a1.48 1.48 0 0 0-.652.595c-.082.137-.16.317-.199.405l-.02.045q-.195.425-.386.852l-.207.464-.524.032q-.537.034-1.073.063c-.105.006-.317.018-.512.067a1.6 1.6 0 0 0-.87.535 1.34 1.34 0 0 0-.302.726v.003a1.5 1.5 0 0 0 .386 1.142l.005.006c.137.154.29.27.38.338.276.207.549.42.822.631l.428.332q-.152.525-.3 1.049-.094.336-.19.666a1.9 1.9 0 0 0-.084.52c0 .177.028.368.106.561.222.553.72.831 1.237.843.328.007.605-.094.817-.209.15-.081.286-.186.359-.242q.703-.542 1.412-1.079l.023-.017.331.218q.492.325.99.649c.204.132.497.273.873.265h.005c.45-.013.822-.23 1.06-.572.265-.376.276-.776.246-1.053a2 2 0 0 0-.06-.307l-.093-.348a91 91 0 0 1-.286-1.093l.3-.273q.254-.234.514-.462a4 4 0 0 0 .331-.314 1.46 1.46 0 0 0 .381-.978 1.35 1.35 0 0 0-.397-.965l-.002-.001a1.45 1.45 0 0 0-.726-.394 9 9 0 0 0-1-.146 24 24 0 0 1-.482-.057l-.405-.984-.23-.554a2 2 0 0 0-.252-.464l-.001-.002a1.5 1.5 0 0 0-.988-.604zm-.044 2.137a.147.147 0 0 0-.27-.006q-.23.503-.454 1.008l-.177.394a.87.87 0 0 1-.86.517l-1.49.088a.15.15 0 0 0-.082.268l.35.272q.46.357.91.698a.85.85 0 0 1 .32.902c-.1.392-.214.78-.33 1.166q-.037.128-.075.254a.146.146 0 0 0 .23.158l.34-.263c.33-.257.662-.513.998-.76a.84.84 0 0 1 .96-.026l1.045.684c.116.076.267-.033.232-.168l-.107-.418q-.091-.365-.19-.728a.85.85 0 0 1 .26-.873l.848-.764a.15.15 0 0 0-.08-.26l-.07-.01q-.497-.07-.996-.128a.85.85 0 0 1-.694-.517 18 18 0 0 1-.499-1.186zM3 9v10a6 6 0 0 0 6 6h10a6 6 0 0 0 6-6V9a6 6 0 0 0-6-6H9a6 6 0 0 0-6 6m16-4h-2.253A6 6 0 0 1 20 10.335v7.33A6 6 0 0 1 16.747 23H19a4 4 0 0 0 4-4V9a4 4 0 0 0-4-4M5 18.253V9.747a4 4 0 0 1 4.467-3.972l5 .588A4 4 0 0 1 18 10.335v7.33a4 4 0 0 1-3.533 3.972l-5 .588A4 4 0 0 1 5 18.253" clip-rule="evenodd" /></symbol>', 28, 28, false, undefined);
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { SVGProps, Ref, FC } from 'react';
|
|
2
|
+
import { makeIcon } from '@vkontakte/icons-sprite';
|
|
3
|
+
export interface Icon28RocketProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
fill?: string;
|
|
5
|
+
width?: number;
|
|
6
|
+
height?: number;
|
|
7
|
+
getRootRef?: Ref<SVGSVGElement>;
|
|
8
|
+
title?: string;
|
|
9
|
+
deprecated?: boolean;
|
|
10
|
+
replacement?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const Icon28Rocket: FC<Icon28RocketProps> & {
|
|
13
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
"use strict";
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "Icon28Rocket", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function() {
|
|
9
|
+
return Icon28Rocket;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _iconssprite = require("@vkontakte/icons-sprite");
|
|
13
|
+
var Icon28Rocket = (0, _iconssprite.makeIcon)('Icon28Rocket', 'rocket_28', '0 0 28 28', '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 28 28" id="rocket_28"><path fill-rule="evenodd" d="M11.308 19.631c1.47 1.47 6.368-1.47 9.308-4.409 5.878-5.878 5.878-11.757 4.898-12.736s-6.858-.98-12.736 4.898c-2.94 2.94-5.879 7.838-4.41 9.308l2.94 2.94Zm7.08-10.02a2.015 2.015 0 1 0 2.851-2.85 2.015 2.015 0 0 0-2.85 2.85ZM8.846 24.142c-1.564 1.564-5.076 1.813-6.362 1.851a.46.46 0 0 1-.477-.477c.038-1.286.287-4.798 1.851-6.362 1.335-1.335 3.534-1.3 4.912.076 1.377 1.378 1.411 3.577.076 4.912M10.71 6.223c.391.078.54.56.273.855-1.313 1.447-2.563 3.187-3.406 4.817-.364.703-.676 1.432-.876 2.14-.086.305-.416.484-.709.363l-3.027-1.246a1.21 1.21 0 0 1-.394-1.973l5.028-5.03a1.21 1.21 0 0 1 1.093-.33zm2.892 15.785c-.121-.293.058-.623.363-.71.708-.2 1.437-.511 2.14-.875 1.63-.843 3.37-2.093 4.817-3.406.294-.267.777-.118.855.272l.404 2.02a1.21 1.21 0 0 1-.33 1.092l-5.03 5.029a1.21 1.21 0 0 1-1.973-.395z" /></symbol>', 28, 28, false, undefined);
|