@vkontakte/icons 2.147.0 → 2.148.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/coins_outline_24.d.ts +13 -0
- package/dist/24/coins_outline_24.js +13 -0
- package/dist/28/play_circle_fill_red_28.d.ts +13 -0
- package/dist/28/play_circle_fill_red_28.js +13 -0
- package/dist/icons-map.json +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +8 -0
- package/dist/typings/24/coins_outline_24.d.ts +13 -0
- package/dist/typings/28/play_circle_fill_red_28.d.ts +13 -0
- package/dist/typings/index.d.ts +2 -0
- package/dist_es6/24/coins_outline_24.d.ts +13 -0
- package/dist_es6/24/coins_outline_24.js +3 -0
- package/dist_es6/28/play_circle_fill_red_28.d.ts +13 -0
- package/dist_es6/28/play_circle_fill_red_28.js +3 -0
- package/dist_es6/index.d.ts +2 -0
- package/dist_es6/index.js +2 -0
- package/package.json +7 -7
- package/src/svg/24/coins_outline_24.svg +1 -0
- package/src/svg/28/play_circle_fill_red_28.svg +10 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { SVGProps, Ref, FC } from 'react';
|
|
2
|
+
import { makeIcon } from '@vkontakte/icons-sprite';
|
|
3
|
+
export interface Icon24CoinsOutlineProps 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 Icon24CoinsOutline: FC<Icon24CoinsOutlineProps> & {
|
|
13
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
"use strict";
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "Icon24CoinsOutline", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function() {
|
|
9
|
+
return Icon24CoinsOutline;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _iconssprite = require("@vkontakte/icons-sprite");
|
|
13
|
+
var Icon24CoinsOutline = (0, _iconssprite.makeIcon)('Icon24CoinsOutline', 'coins_outline_24', '0 0 24 24', '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" id="coins_outline_24"><path fill-rule="evenodd" d="M19.2 8.556c-.002-.787-.58-1.69-1.914-2.44C15.98 5.383 14.111 4.9 12 4.9s-3.979.483-5.286 1.218C5.378 6.867 4.8 7.764 4.8 8.552s.578 1.685 1.914 2.436c1.307.735 3.175 1.218 5.286 1.218s3.979-.483 5.286-1.218c1.334-.75 1.912-1.645 1.914-2.432m0 3.308a7.6 7.6 0 0 1-1.031.692c-1.624.913-3.807 1.449-6.169 1.449s-4.545-.536-6.169-1.45a7.6 7.6 0 0 1-1.031-.691v.23c0 .788.578 1.684 1.914 2.435 1.307.735 3.175 1.218 5.286 1.218s3.976-.482 5.284-1.216c1.336-.75 1.914-1.646 1.916-2.434m0 3.308a7.6 7.6 0 0 1-1.034.694c-1.624.912-3.805 1.447-6.166 1.447s-4.545-.536-6.169-1.449a7.6 7.6 0 0 1-1.031-.692v.143c0 .788.578 1.684 1.914 2.435 1.307.735 3.175 1.218 5.286 1.218s3.976-.482 5.284-1.216c1.336-.75 1.914-1.646 1.916-2.434m1.8.04c-.021 1.708-1.25 3.072-2.834 3.962C16.542 20.464 14.36 21 12 21c-2.362 0-4.545-.536-6.169-1.449-1.582-.89-2.81-2.254-2.83-3.96L3 8.396c.026-1.7 1.253-3.06 2.831-3.947C7.455 3.536 9.638 3 12 3c2.36 0 4.542.536 6.166 1.447 1.58.888 2.807 2.248 2.834 3.95zm-1.8-.04v-.146zm0-3.454v-.233z" 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 Icon28PlayCircleFillRedProps 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 Icon28PlayCircleFillRed: FC<Icon28PlayCircleFillRedProps> & {
|
|
13
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
"use strict";
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "Icon28PlayCircleFillRed", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function() {
|
|
9
|
+
return Icon28PlayCircleFillRed;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _iconssprite = require("@vkontakte/icons-sprite");
|
|
13
|
+
var Icon28PlayCircleFillRed = (0, _iconssprite.makeIcon)('Icon28PlayCircleFillRed', 'play_circle_fill_red_28', '0 0 28 28', '<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 28 28" id="play_circle_fill_red_28"><circle cx="14" cy="14" r="14" fill="url(#play_circle_fill_red_28_a)" /><path fill="#fff" d="M19.024 13.13c.635.384.635 1.354 0 1.738l-6.612 3.997c-.63.38-1.412-.1-1.412-.868v-7.995c0-.768.783-1.25 1.412-.869l6.612 3.998Z" /><defs><linearGradient id="play_circle_fill_red_28_a" x1="0" x2="28.733" y1="0" y2=".773" gradientUnits="userSpaceOnUse"><stop stop-color="#FF5263" /><stop offset="1" stop-color="#FF3347" /></linearGradient></defs></symbol>', 28, 28, false, undefined);
|