@vkontakte/icons 2.149.0 → 2.150.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/carousel_outline_20.js +1 -1
- package/dist/24/add_circle_fill_blue_24.d.ts +13 -0
- package/dist/24/add_circle_fill_blue_24.js +13 -0
- package/dist/24/pause_circle_fill_white_24.js +1 -1
- package/dist/24/play_circle_fill_white_24.js +1 -1
- package/dist/icons-map.json +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +4 -0
- package/dist/typings/24/add_circle_fill_blue_24.d.ts +13 -0
- package/dist/typings/index.d.ts +1 -0
- package/dist_es6/20/carousel_outline_20.js +1 -1
- package/dist_es6/24/add_circle_fill_blue_24.d.ts +13 -0
- package/dist_es6/24/add_circle_fill_blue_24.js +3 -0
- package/dist_es6/24/pause_circle_fill_white_24.js +1 -1
- package/dist_es6/24/play_circle_fill_white_24.js +1 -1
- package/dist_es6/index.d.ts +1 -0
- package/dist_es6/index.js +1 -0
- package/package.json +3 -3
- package/src/svg/20/carousel_outline_20.svg +1 -1
- package/src/svg/24/add_circle_fill_blue_24.svg +4 -0
- package/src/svg/24/pause_circle_fill_white_24.svg +5 -1
- package/src/svg/24/play_circle_fill_white_24.svg +4 -1
|
@@ -10,4 +10,4 @@ Object.defineProperty(exports, "Icon20CarouselOutline", {
|
|
|
10
10
|
}
|
|
11
11
|
});
|
|
12
12
|
var _iconssprite = require("@vkontakte/icons-sprite");
|
|
13
|
-
var Icon20CarouselOutline = (0, _iconssprite.makeIcon)('Icon20CarouselOutline', 'carousel_outline_20', '0 0 20 20', '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20" id="carousel_outline_20"><path d="
|
|
13
|
+
var Icon20CarouselOutline = (0, _iconssprite.makeIcon)('Icon20CarouselOutline', 'carousel_outline_20', '0 0 20 20', '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20" id="carousel_outline_20"><path d="M15.969 3c-.674 0-1.224 0-1.672.037-.463.037-.882.118-1.273.317a3.25 3.25 0 0 0-1.42 1.42c-.199.391-.28.81-.317 1.273-.037.447-.037.998-.037 1.672v4.562c0 .674 0 1.224.037 1.672.037.463.118.882.317 1.273a3.25 3.25 0 0 0 1.42 1.42c.391.199.81.28 1.273.317.447.037.998.037 1.672.037H17a.75.75 0 0 0 0-1.5h-1c-.712 0-1.202 0-1.58-.032-.371-.03-.57-.085-.714-.159a1.75 1.75 0 0 1-.765-.764c-.074-.145-.13-.344-.16-.714-.03-.38-.031-.869-.031-1.581v-4.5c0-.712 0-1.202.032-1.58.03-.371.085-.57.159-.714a1.75 1.75 0 0 1 .764-.765c.145-.074.344-.13.714-.16.38-.03.869-.031 1.581-.031h1A.75.75 0 0 0 17 3zM4.031 17c.674 0 1.225 0 1.672-.037.463-.037.882-.118 1.272-.317a3.25 3.25 0 0 0 1.42-1.42c.2-.391.28-.81.318-1.273.037-.447.037-.998.037-1.672V7.72c0-.674 0-1.224-.037-1.672-.037-.463-.118-.882-.317-1.272a3.25 3.25 0 0 0-1.42-1.42c-.391-.2-.81-.28-1.273-.318C5.256 3 4.705 3 4.031 3H3a.75.75 0 0 0 0 1.5h1c.712 0 1.202 0 1.58.032.371.03.57.085.714.159.33.168.597.435.765.765.074.144.13.343.16.713.03.38.031.869.031 1.581v4.5c0 .712 0 1.202-.032 1.58-.03.371-.085.57-.159.714a1.75 1.75 0 0 1-.765.765c-.144.074-.343.13-.713.16-.38.03-.869.031-1.581.031H3A.75.75 0 0 0 3 17z" /></symbol>', 20, 20, false, undefined);
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { SVGProps, Ref, FC } from 'react';
|
|
2
|
+
import { makeIcon } from '@vkontakte/icons-sprite';
|
|
3
|
+
export interface Icon24AddCircleFillBlueProps 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 Icon24AddCircleFillBlue: FC<Icon24AddCircleFillBlueProps> & {
|
|
13
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
"use strict";
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "Icon24AddCircleFillBlue", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function() {
|
|
9
|
+
return Icon24AddCircleFillBlue;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _iconssprite = require("@vkontakte/icons-sprite");
|
|
13
|
+
var Icon24AddCircleFillBlue = (0, _iconssprite.makeIcon)('Icon24AddCircleFillBlue', 'add_circle_fill_blue_24', '0 0 24 24', '<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="add_circle_fill_blue_24"><path fill="#447BBA" d="M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12" /><path fill="#fff" d="M12 6c.602 0 1.09.488 1.09 1.09v3.82h3.82a1.09 1.09 0 1 1 0 2.18h-3.82v3.82a1.09 1.09 0 1 1-2.18 0v-3.82H7.09a1.09 1.09 0 1 1 0-2.18h3.82V7.09c0-.602.488-1.09 1.09-1.09" /></symbol>', 24, 24, false, undefined);
|
|
@@ -10,4 +10,4 @@ Object.defineProperty(exports, "Icon24PauseCircleFillWhite", {
|
|
|
10
10
|
}
|
|
11
11
|
});
|
|
12
12
|
var _iconssprite = require("@vkontakte/icons-sprite");
|
|
13
|
-
var Icon24PauseCircleFillWhite = (0, _iconssprite.makeIcon)('Icon24PauseCircleFillWhite', 'pause_circle_fill_white_24', '0 0 24 24', '<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="pause_circle_fill_white_24"><path fill="#fff" d="M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12" /><
|
|
13
|
+
var Icon24PauseCircleFillWhite = (0, _iconssprite.makeIcon)('Icon24PauseCircleFillWhite', 'pause_circle_fill_white_24', '0 0 24 24', '<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="pause_circle_fill_white_24"><path fill="#fff" d="M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12" /><rect width="3" height="10" x="13" y="7" fill="#000" rx="1" /><rect width="3" height="10" x="8" y="7" fill="#000" rx="1" /></symbol>', 24, 24, false, undefined);
|
|
@@ -10,4 +10,4 @@ Object.defineProperty(exports, "Icon24PlayCircleFillWhite", {
|
|
|
10
10
|
}
|
|
11
11
|
});
|
|
12
12
|
var _iconssprite = require("@vkontakte/icons-sprite");
|
|
13
|
-
var Icon24PlayCircleFillWhite = (0, _iconssprite.makeIcon)('Icon24PlayCircleFillWhite', 'play_circle_fill_white_24', '0 0 24 24', '<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="play_circle_fill_white_24"><path fill="#fff" d="M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12" /><path fill="
|
|
13
|
+
var Icon24PlayCircleFillWhite = (0, _iconssprite.makeIcon)('Icon24PlayCircleFillWhite', 'play_circle_fill_white_24', '0 0 24 24', '<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="play_circle_fill_white_24"><path fill="#fff" d="M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12" /><path fill="#000" d="M16.579 11.188c.561.36.561 1.263 0 1.624l-6.316 4.061c-.561.36-1.263-.09-1.263-.812V7.939c0-.722.702-1.173 1.263-.812l6.316 4.06Z" /></symbol>', 24, 24, false, undefined);
|