@vkontakte/icons 3.19.0 → 3.21.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/28/diamond_28.d.ts +5 -0
- package/dist/28/diamond_28.js +18 -0
- package/dist/icons-map.json +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/typings/28/diamond_28.d.ts +5 -0
- package/dist/typings/index.d.ts +1 -0
- package/package.json +3 -3
- package/src/svg/28/diamond_28.svg +1 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
import { SvgIconRootV2 } from "@vkontakte/icons-sprite";
|
|
4
|
+
export const Icon28Diamond = (props)=>{
|
|
5
|
+
return /*#__PURE__*/ _jsx(SvgIconRootV2, {
|
|
6
|
+
viewBox: "0 0 28 28",
|
|
7
|
+
width: 28,
|
|
8
|
+
height: 28,
|
|
9
|
+
vkuiIconId: "diamond_28",
|
|
10
|
+
vkuiAttrs: {
|
|
11
|
+
"fill": "currentColor"
|
|
12
|
+
},
|
|
13
|
+
vkuiProps: props,
|
|
14
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
15
|
+
d: "m18.831 12.406-4.31 11.07c-.175.45-.831.449-1.006 0l-4.31-11.07zm6.477 0c.46 0 .711.522.408.86A2819 2819 0 0 1 16.04 24l4.516-11.594zm-17.827 0 4.47 11.48a2928 2928 0 0 1-9.626-10.62c-.304-.337-.054-.86.408-.86zM19.77 4a2.18 2.18 0 0 1 1.635.73c1.118 1.268 3.338 3.908 4.475 5.266.285.34.034.847-.418.847H20.53L17.675 4zm-9.406 0-2.856 6.843H2.54c-.45 0-.7-.5-.422-.842 1.103-1.352 3.26-3.984 4.349-5.25A2.18 2.18 0 0 1 8.118 4h2.245Zm5.573 0 2.855 6.843H9.246L12.103 4z"
|
|
16
|
+
})
|
|
17
|
+
});
|
|
18
|
+
};
|