@datalayer/icons-react 0.3.7 → 1.0.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/data1/ArxivIcon.d.ts +3 -0
- package/data1/ArxivIcon.js +45 -0
- package/data1/ArxivIcon.svg +7 -0
- package/data1/ArxivIconJupyterLab.d.ts +3 -0
- package/data1/ArxivIconJupyterLab.js +7 -0
- package/data1/ArxivMarkIcon.d.ts +3 -0
- package/data1/ArxivMarkIcon.js +40 -0
- package/data1/ArxivMarkIcon.svg +6 -0
- package/data1/ArxivMarkIconJupyterLab.d.ts +3 -0
- package/data1/ArxivMarkIconJupyterLab.js +7 -0
- package/data1/ArxivMarkSmallIcon.d.ts +3 -0
- package/data1/ArxivMarkSmallIcon.js +38 -0
- package/data1/ArxivMarkSmallIcon.svg +5 -0
- package/data1/ArxivMarkSmallIconJupyterLab.d.ts +3 -0
- package/data1/ArxivMarkSmallIconJupyterLab.js +7 -0
- package/data1/esm/ArxivIcon.d.ts +3 -0
- package/data1/esm/ArxivIcon.js +45 -0
- package/data1/esm/ArxivIcon.svg +7 -0
- package/data1/esm/ArxivIconJupyterLab.d.ts +3 -0
- package/data1/esm/ArxivIconJupyterLab.js +7 -0
- package/data1/esm/ArxivMarkIcon.d.ts +3 -0
- package/data1/esm/ArxivMarkIcon.js +40 -0
- package/data1/esm/ArxivMarkIcon.svg +6 -0
- package/data1/esm/ArxivMarkIconJupyterLab.d.ts +3 -0
- package/data1/esm/ArxivMarkIconJupyterLab.js +7 -0
- package/data1/esm/ArxivMarkSmallIcon.d.ts +3 -0
- package/data1/esm/ArxivMarkSmallIcon.js +38 -0
- package/data1/esm/ArxivMarkSmallIcon.svg +5 -0
- package/data1/esm/ArxivMarkSmallIconJupyterLab.d.ts +3 -0
- package/data1/esm/ArxivMarkSmallIconJupyterLab.js +7 -0
- package/data1/esm/index.d.ts +6 -0
- package/data1/esm/index.js +6 -0
- package/data1/index.d.ts +6 -0
- package/data1/index.js +6 -0
- package/data2/JovyanIcon.d.ts +3 -0
- package/data2/JovyanIcon.js +47 -0
- package/data2/JovyanIcon.svg +11 -0
- package/data2/JovyanIconJupyterLab.d.ts +3 -0
- package/data2/JovyanIconJupyterLab.js +7 -0
- package/data2/esm/JovyanIcon.d.ts +3 -0
- package/data2/esm/JovyanIcon.js +47 -0
- package/data2/esm/JovyanIcon.svg +11 -0
- package/data2/esm/JovyanIconJupyterLab.d.ts +3 -0
- package/data2/esm/JovyanIconJupyterLab.js +7 -0
- package/data2/esm/index.d.ts +2 -0
- package/data2/esm/index.js +2 -0
- package/data2/index.d.ts +2 -0
- package/data2/index.js +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const ArxivIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
|
|
3
|
+
export default ArxivIcon;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
|
|
3
|
+
const sizeMap = {
|
|
4
|
+
"small": 16,
|
|
5
|
+
"medium": 32,
|
|
6
|
+
"large": 64
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
function ArxivIcon({
|
|
10
|
+
title,
|
|
11
|
+
titleId,
|
|
12
|
+
size,
|
|
13
|
+
colored,
|
|
14
|
+
...props
|
|
15
|
+
}, svgRef) {
|
|
16
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
17
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
+
"data-name": "primary logo",
|
|
19
|
+
viewBox: "0 0 246.978 111.119",
|
|
20
|
+
fill: colored ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'),
|
|
21
|
+
width: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
|
|
22
|
+
"aria-hidden": "true",
|
|
23
|
+
ref: svgRef,
|
|
24
|
+
"aria-labelledby": titleId
|
|
25
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
26
|
+
id: titleId
|
|
27
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
fill: colored ? '#7c7469' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#7c7469') ? 'white' : 'currentColor'),
|
|
29
|
+
d: "M69.406 32.884c1.859 0 3.1 1.24 3.985 3.453 1.062-2.213 2.568-3.453 4.694-3.453h14.878a4.062 4.062 0 014.074 4.074v7.828c0 2.656-1.327 4.074-4.074 4.074-2.656 0-4.074-1.418-4.074-4.074V41.03H78.35a2.411 2.411 0 00-2.656 2.745v27.188h10.007c2.658 0 4.074 1.329 4.074 4.074s-1.416 4.074-4.074 4.074h-26.39c-2.659 0-3.986-1.328-3.986-4.074s1.327-4.074 3.986-4.074h8.236V41.03h-7.263c-2.656 0-3.985-1.329-3.985-4.074 0-2.658 1.329-4.074 3.985-4.074zM181.068 32.884c2.656 0 4.074 1.416 4.074 4.074v34.007h10.1c2.746 0 4.074 1.329 4.074 4.074s-1.328 4.074-4.074 4.074h-28.607c-2.656 0-4.074-1.328-4.074-4.074s1.418-4.074 4.074-4.074h10.362V41.03h-8.533c-2.744 0-4.073-1.329-4.073-4.074 0-2.658 1.329-4.074 4.073-4.074zm4.22-17.615a5.859 5.859 0 11-5.819-5.819 5.9 5.9 0 015.819 5.819zM246.978 36.958a4.589 4.589 0 01-.267 1.594L231.835 76.63a3.722 3.722 0 01-3.721 2.48h-5.933a3.689 3.689 0 01-3.808-2.48l-15.055-38.081a3.23 3.23 0 01-.355-1.594 4.084 4.084 0 014.164-4.074 3.8 3.8 0 013.718 2.656l14.348 36.134 13.9-36.134a3.8 3.8 0 013.72-2.656 4.084 4.084 0 014.165 4.077z"
|
|
30
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
31
|
+
fill: colored ? '#aa142d' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#aa142d') ? 'white' : 'currentColor'),
|
|
32
|
+
d: "M127.984 55.607L95.243 94.459c-1.286 1.372-2.084 3.777-1.365 5.5a4.705 4.705 0 004.4 2.914 4.191 4.191 0 003.16-1.563l40.191-42.714a4.417 4.417 0 00.042-6.042z"
|
|
33
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
34
|
+
fill: colored ? '#7c7469' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#7c7469') ? 'white' : 'currentColor'),
|
|
35
|
+
d: "M127.984 55.607l31.187-38.268c1.492-1.989 2.2-3.03 1.492-4.723a5.142 5.142 0 00-4.481-3.161 4.024 4.024 0 00-3.008 1.108L114.546 52.33a4.769 4.769 0 00.015 6.53l47.786 51.07a3.913 3.913 0 003.137 1.192 4.394 4.394 0 004.027-2.818c.719-1.727-.076-3.438-1.4-5.23L127.987 55.61"
|
|
36
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
37
|
+
fill: colored ? '#aa142d' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#aa142d') ? 'white' : 'currentColor'),
|
|
38
|
+
d: "M141.668 52.558L95.004 2.13S93.291.05 91.48.006a4.607 4.607 0 00-4.338 2.788c-.705 1.692-.2 2.88 1.349 5.1l40.093 48.422"
|
|
39
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
40
|
+
fill: colored ? '#7c7469' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#7c7469') ? 'white' : 'currentColor'),
|
|
41
|
+
d: "M32.445 32.884c5.018 0 8.206 3.312 8.206 8.4v37.831H5.143A4.813 4.813 0 010 74.186V61.157a8.256 8.256 0 017-8.148l25.507-3.572v-8.4H4.141A4.014 4.014 0 010 36.963c0-2.87 2.143-4.074 4.355-4.074zm.059 38.081V57.672l-24.354 3.4v9.9z"
|
|
42
|
+
}));
|
|
43
|
+
}
|
|
44
|
+
const ForwardRef = React.forwardRef(ArxivIcon);
|
|
45
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" data-name="primary logo" viewBox="0 0 246.978 111.119" fill="currentColor" aria-hidden="true">
|
|
2
|
+
<path fill="#7c7469" d="M69.406 32.884c1.859 0 3.1 1.24 3.985 3.453 1.062-2.213 2.568-3.453 4.694-3.453h14.878a4.062 4.062 0 014.074 4.074v7.828c0 2.656-1.327 4.074-4.074 4.074-2.656 0-4.074-1.418-4.074-4.074V41.03H78.35a2.411 2.411 0 00-2.656 2.745v27.188h10.007c2.658 0 4.074 1.329 4.074 4.074s-1.416 4.074-4.074 4.074h-26.39c-2.659 0-3.986-1.328-3.986-4.074s1.327-4.074 3.986-4.074h8.236V41.03h-7.263c-2.656 0-3.985-1.329-3.985-4.074 0-2.658 1.329-4.074 3.985-4.074zM181.068 32.884c2.656 0 4.074 1.416 4.074 4.074v34.007h10.1c2.746 0 4.074 1.329 4.074 4.074s-1.328 4.074-4.074 4.074h-28.607c-2.656 0-4.074-1.328-4.074-4.074s1.418-4.074 4.074-4.074h10.362V41.03h-8.533c-2.744 0-4.073-1.329-4.073-4.074 0-2.658 1.329-4.074 4.073-4.074zm4.22-17.615a5.859 5.859 0 11-5.819-5.819 5.9 5.9 0 015.819 5.819zM246.978 36.958a4.589 4.589 0 01-.267 1.594L231.835 76.63a3.722 3.722 0 01-3.721 2.48h-5.933a3.689 3.689 0 01-3.808-2.48l-15.055-38.081a3.23 3.23 0 01-.355-1.594 4.084 4.084 0 014.164-4.074 3.8 3.8 0 013.718 2.656l14.348 36.134 13.9-36.134a3.8 3.8 0 013.72-2.656 4.084 4.084 0 014.165 4.077z"/>
|
|
3
|
+
<path fill="#aa142d" d="M127.984 55.607L95.243 94.459c-1.286 1.372-2.084 3.777-1.365 5.5a4.705 4.705 0 004.4 2.914 4.191 4.191 0 003.16-1.563l40.191-42.714a4.417 4.417 0 00.042-6.042z"/>
|
|
4
|
+
<path fill="#7c7469" d="M127.984 55.607l31.187-38.268c1.492-1.989 2.2-3.03 1.492-4.723a5.142 5.142 0 00-4.481-3.161 4.024 4.024 0 00-3.008 1.108L114.546 52.33a4.769 4.769 0 00.015 6.53l47.786 51.07a3.913 3.913 0 003.137 1.192 4.394 4.394 0 004.027-2.818c.719-1.727-.076-3.438-1.4-5.23L127.987 55.61"/>
|
|
5
|
+
<path fill="#aa142d" d="M141.668 52.558L95.004 2.13S93.291.05 91.48.006a4.607 4.607 0 00-4.338 2.788c-.705 1.692-.2 2.88 1.349 5.1l40.093 48.422"/>
|
|
6
|
+
<path fill="#7c7469" d="M32.445 32.884c5.018 0 8.206 3.312 8.206 8.4v37.831H5.143A4.813 4.813 0 010 74.186V61.157a8.256 8.256 0 017-8.148l25.507-3.572v-8.4H4.141A4.014 4.014 0 010 36.963c0-2.87 2.143-4.074 4.355-4.074zm.059 38.081V57.672l-24.354 3.4v9.9z"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const ArxivMarkIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
|
|
3
|
+
export default ArxivMarkIcon;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
|
|
3
|
+
const sizeMap = {
|
|
4
|
+
"small": 16,
|
|
5
|
+
"medium": 32,
|
|
6
|
+
"large": 64
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
function ArxivMarkIcon({
|
|
10
|
+
title,
|
|
11
|
+
titleId,
|
|
12
|
+
size,
|
|
13
|
+
colored,
|
|
14
|
+
...props
|
|
15
|
+
}, svgRef) {
|
|
16
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
17
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
+
viewBox: "0 0 135.611 201",
|
|
19
|
+
fill: colored ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'),
|
|
20
|
+
"aria-hidden": "true",
|
|
21
|
+
height: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
|
|
22
|
+
ref: svgRef,
|
|
23
|
+
"aria-labelledby": titleId
|
|
24
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
25
|
+
id: titleId
|
|
26
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
fill: colored ? '#aa142d' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#aa142d') ? 'white' : 'currentColor'),
|
|
28
|
+
d: "M65.727 82.523l-42.324 49.375c-1.885 2.01-3.054 5.535-2 8.066a6.9 6.9 0 006.443 4.27c1.6 0 2.911-.56 4.631-2.289l52.364-54.278a8.927 8.927 0 00.061-12.584z"
|
|
29
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
fill: colored ? '#bdb9b4' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#bdb9b4') ? 'white' : 'currentColor'),
|
|
31
|
+
d: "M64.847 81.494l39.168-49.545c2.186-2.914 3.219-4.44 2.186-6.921a7.536 7.536 0 00-6.566-4.633 5.9 5.9 0 00-4.408 1.624L45.155 75.08c-3.816 3.816-3.808 8.753.023 12.584l70.031 73.438a5.738 5.738 0 004.6 1.748c2.833 0 4.67-1.667 5.9-4.131 1.054-2.531-.112-5.038-2.056-7.664l-58.8-69.561"
|
|
32
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
33
|
+
fill: colored ? '#aa142d' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#aa142d') ? 'white' : 'currentColor'),
|
|
34
|
+
d: "M84.902 75.08L16.514 3.114S14.003.066 11.349.002a6.75 6.75 0 00-6.357 4.084c-1.033 2.481-.291 4.223 1.977 7.47l58.758 70.967z"
|
|
35
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
36
|
+
d: "M81.361 201a2.2 2.2 0 01-1.895-1.1l-8.528-14.161-8.576 14.161a2.152 2.152 0 01-1.9 1.1 2.33 2.33 0 01-2.343-2.3 2.269 2.269 0 01.348-1.246l9.925-15.907-8.121-13.01a2.722 2.722 0 01-.351-1.247 2.331 2.331 0 012.347-2.292 2.093 2.093 0 011.894 1.046l6.779 11.42 6.734-11.42a2.011 2.011 0 011.843-1.046 2.268 2.268 0 012.346 2.292 2.7 2.7 0 01-.3 1.247l-8.079 13.015 9.825 15.907a1.956 1.956 0 01.4 1.246A2.363 2.363 0 0181.361 201zM38.109 175.555c1.021 0 1.7.681 2.188 1.9a2.817 2.817 0 012.578-1.9h8.169a2.231 2.231 0 012.237 2.237v4.3a1.983 1.983 0 01-2.237 2.237 2 2 0 01-2.237-2.237v-2.061H43.02a1.324 1.324 0 00-1.458 1.507v14.929h5.494a2.237 2.237 0 110 4.473H32.571a2.237 2.237 0 010-4.473h4.522v-16.438h-3.992a2.238 2.238 0 010-4.474zM99.42 175.555a2 2 0 012.237 2.237v18.673h5.543a2.237 2.237 0 110 4.473H91.494a2.237 2.237 0 110-4.473h5.69v-16.436h-4.686a2.237 2.237 0 010-4.474zm2.317-9.672a3.217 3.217 0 11-3.194-3.195 3.241 3.241 0 013.194 3.195zM135.611 177.792a2.527 2.527 0 01-.147.875l-8.169 20.91a2.042 2.042 0 01-2.043 1.361h-3.258a2.027 2.027 0 01-2.091-1.361l-8.266-20.91a1.78 1.78 0 01-.195-.875 2.242 2.242 0 012.286-2.237 2.086 2.086 0 012.042 1.459l7.878 19.84 7.634-19.84a2.087 2.087 0 012.043-1.459 2.242 2.242 0 012.286 2.237zM17.815 175.555a4.268 4.268 0 014.506 4.611v20.772h-19.5a2.643 2.643 0 01-2.824-2.706v-7.153a4.533 4.533 0 013.842-4.474l14-1.961v-4.615H2.271a2.2 2.2 0 01-2.274-2.237 2.173 2.173 0 012.391-2.237zm.032 20.91v-7.3L4.471 191.03v5.435z"
|
|
37
|
+
}));
|
|
38
|
+
}
|
|
39
|
+
const ForwardRef = React.forwardRef(ArxivMarkIcon);
|
|
40
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 135.611 201" fill="currentColor" aria-hidden="true">
|
|
2
|
+
<path fill="#aa142d" d="M65.727 82.523l-42.324 49.375c-1.885 2.01-3.054 5.535-2 8.066a6.9 6.9 0 006.443 4.27c1.6 0 2.911-.56 4.631-2.289l52.364-54.278a8.927 8.927 0 00.061-12.584z"/>
|
|
3
|
+
<path fill="#bdb9b4" d="M64.847 81.494l39.168-49.545c2.186-2.914 3.219-4.44 2.186-6.921a7.536 7.536 0 00-6.566-4.633 5.9 5.9 0 00-4.408 1.624L45.155 75.08c-3.816 3.816-3.808 8.753.023 12.584l70.031 73.438a5.738 5.738 0 004.6 1.748c2.833 0 4.67-1.667 5.9-4.131 1.054-2.531-.112-5.038-2.056-7.664l-58.8-69.561"/>
|
|
4
|
+
<path fill="#aa142d" d="M84.902 75.08L16.514 3.114S14.003.066 11.349.002a6.75 6.75 0 00-6.357 4.084c-1.033 2.481-.291 4.223 1.977 7.47l58.758 70.967z"/>
|
|
5
|
+
<path d="M81.361 201a2.2 2.2 0 01-1.895-1.1l-8.528-14.161-8.576 14.161a2.152 2.152 0 01-1.9 1.1 2.33 2.33 0 01-2.343-2.3 2.269 2.269 0 01.348-1.246l9.925-15.907-8.121-13.01a2.722 2.722 0 01-.351-1.247 2.331 2.331 0 012.347-2.292 2.093 2.093 0 011.894 1.046l6.779 11.42 6.734-11.42a2.011 2.011 0 011.843-1.046 2.268 2.268 0 012.346 2.292 2.7 2.7 0 01-.3 1.247l-8.079 13.015 9.825 15.907a1.956 1.956 0 01.4 1.246A2.363 2.363 0 0181.361 201zM38.109 175.555c1.021 0 1.7.681 2.188 1.9a2.817 2.817 0 012.578-1.9h8.169a2.231 2.231 0 012.237 2.237v4.3a1.983 1.983 0 01-2.237 2.237 2 2 0 01-2.237-2.237v-2.061H43.02a1.324 1.324 0 00-1.458 1.507v14.929h5.494a2.237 2.237 0 110 4.473H32.571a2.237 2.237 0 010-4.473h4.522v-16.438h-3.992a2.238 2.238 0 010-4.474zM99.42 175.555a2 2 0 012.237 2.237v18.673h5.543a2.237 2.237 0 110 4.473H91.494a2.237 2.237 0 110-4.473h5.69v-16.436h-4.686a2.237 2.237 0 010-4.474zm2.317-9.672a3.217 3.217 0 11-3.194-3.195 3.241 3.241 0 013.194 3.195zM135.611 177.792a2.527 2.527 0 01-.147.875l-8.169 20.91a2.042 2.042 0 01-2.043 1.361h-3.258a2.027 2.027 0 01-2.091-1.361l-8.266-20.91a1.78 1.78 0 01-.195-.875 2.242 2.242 0 012.286-2.237 2.086 2.086 0 012.042 1.459l7.878 19.84 7.634-19.84a2.087 2.087 0 012.043-1.459 2.242 2.242 0 012.286 2.237zM17.815 175.555a4.268 4.268 0 014.506 4.611v20.772h-19.5a2.643 2.643 0 01-2.824-2.706v-7.153a4.533 4.533 0 013.842-4.474l14-1.961v-4.615H2.271a2.2 2.2 0 01-2.274-2.237 2.173 2.173 0 012.391-2.237zm.032 20.91v-7.3L4.471 191.03v5.435z"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
|
|
2
|
+
import ArxivMarkIconSvgStr from './ArxivMarkIcon.svg';
|
|
3
|
+
const arxivMarkIconJupyterLab = new LabIcon({
|
|
4
|
+
name: '@datalayer/icons:arxiv-mark',
|
|
5
|
+
svgstr: ArxivMarkIconSvgStr,
|
|
6
|
+
});
|
|
7
|
+
export default arxivMarkIconJupyterLab;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const ArxivMarkSmallIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
|
|
3
|
+
export default ArxivMarkSmallIcon;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
|
|
3
|
+
const sizeMap = {
|
|
4
|
+
"small": 16,
|
|
5
|
+
"medium": 32,
|
|
6
|
+
"large": 64
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
function ArxivMarkSmallIcon({
|
|
10
|
+
title,
|
|
11
|
+
titleId,
|
|
12
|
+
size,
|
|
13
|
+
colored,
|
|
14
|
+
...props
|
|
15
|
+
}, svgRef) {
|
|
16
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
17
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
+
viewBox: "0 0 17.732 24.269",
|
|
19
|
+
fill: colored ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'),
|
|
20
|
+
"aria-hidden": "true",
|
|
21
|
+
height: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
|
|
22
|
+
ref: svgRef,
|
|
23
|
+
"aria-labelledby": titleId
|
|
24
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
25
|
+
id: titleId
|
|
26
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
fill: colored ? '#bdb9b4' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#bdb9b4') ? 'white' : 'currentColor'),
|
|
28
|
+
d: "M6.565 9.368l2.266 2.738 6.674-7.84c.353-.47.52-.717.353-1.117a1.218 1.218 0 00-1.061-.748.953.953 0 00-.712.262z"
|
|
29
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
fill: colored ? '#b31b1b' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#b31b1b') ? 'white' : 'currentColor'),
|
|
31
|
+
d: "M12.541 10.677L1.935.503a1.413 1.413 0 00-.834-.5 1.09 1.09 0 00-1.027.66c-.167.4-.047.681.319 1.206l8.44 10.242-6.282 7.716a1.336 1.336 0 00-.323 1.3 1.114 1.114 0 001.04.69.992.992 0 00.748-.365l8.519-7.92a1.924 1.924 0 00.006-2.855z"
|
|
32
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
33
|
+
fill: colored ? '#bdb9b4' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#bdb9b4') ? 'white' : 'currentColor'),
|
|
34
|
+
d: "M17.336 22.364L8.811 12.089 6.546 9.352l-1.389 1.254a2.063 2.063 0 000 2.965L15.969 23.99a.925.925 0 00.742.282 1.039 1.039 0 00.953-.667 1.261 1.261 0 00-.328-1.241z"
|
|
35
|
+
}));
|
|
36
|
+
}
|
|
37
|
+
const ForwardRef = React.forwardRef(ArxivMarkSmallIcon);
|
|
38
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17.732 24.269" fill="currentColor" aria-hidden="true">
|
|
2
|
+
<path fill="#bdb9b4" d="M6.565 9.368l2.266 2.738 6.674-7.84c.353-.47.52-.717.353-1.117a1.218 1.218 0 00-1.061-.748.953.953 0 00-.712.262z"/>
|
|
3
|
+
<path fill="#b31b1b" d="M12.541 10.677L1.935.503a1.413 1.413 0 00-.834-.5 1.09 1.09 0 00-1.027.66c-.167.4-.047.681.319 1.206l8.44 10.242-6.282 7.716a1.336 1.336 0 00-.323 1.3 1.114 1.114 0 001.04.69.992.992 0 00.748-.365l8.519-7.92a1.924 1.924 0 00.006-2.855z"/>
|
|
4
|
+
<path fill="#bdb9b4" d="M17.336 22.364L8.811 12.089 6.546 9.352l-1.389 1.254a2.063 2.063 0 000 2.965L15.969 23.99a.925.925 0 00.742.282 1.039 1.039 0 00.953-.667 1.261 1.261 0 00-.328-1.241z"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
|
|
2
|
+
import ArxivMarkSmallIconSvgStr from './ArxivMarkSmallIcon.svg';
|
|
3
|
+
const arxivMarkSmallIconJupyterLab = new LabIcon({
|
|
4
|
+
name: '@datalayer/icons:arxiv-mark-small',
|
|
5
|
+
svgstr: ArxivMarkSmallIconSvgStr,
|
|
6
|
+
});
|
|
7
|
+
export default arxivMarkSmallIconJupyterLab;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const ArxivIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
|
|
3
|
+
export default ArxivIcon;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
const sizeMap = {
|
|
4
|
+
"small": 16,
|
|
5
|
+
"medium": 32,
|
|
6
|
+
"large": 64
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
function ArxivIcon({
|
|
10
|
+
title,
|
|
11
|
+
titleId,
|
|
12
|
+
size,
|
|
13
|
+
colored,
|
|
14
|
+
...props
|
|
15
|
+
}, svgRef) {
|
|
16
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
17
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
+
"data-name": "primary logo",
|
|
19
|
+
viewBox: "0 0 246.978 111.119",
|
|
20
|
+
fill: colored ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'),
|
|
21
|
+
width: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
|
|
22
|
+
"aria-hidden": "true",
|
|
23
|
+
ref: svgRef,
|
|
24
|
+
"aria-labelledby": titleId
|
|
25
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
26
|
+
id: titleId
|
|
27
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
fill: colored ? '#7c7469' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#7c7469') ? 'white' : 'currentColor'),
|
|
29
|
+
d: "M69.406 32.884c1.859 0 3.1 1.24 3.985 3.453 1.062-2.213 2.568-3.453 4.694-3.453h14.878a4.062 4.062 0 014.074 4.074v7.828c0 2.656-1.327 4.074-4.074 4.074-2.656 0-4.074-1.418-4.074-4.074V41.03H78.35a2.411 2.411 0 00-2.656 2.745v27.188h10.007c2.658 0 4.074 1.329 4.074 4.074s-1.416 4.074-4.074 4.074h-26.39c-2.659 0-3.986-1.328-3.986-4.074s1.327-4.074 3.986-4.074h8.236V41.03h-7.263c-2.656 0-3.985-1.329-3.985-4.074 0-2.658 1.329-4.074 3.985-4.074zM181.068 32.884c2.656 0 4.074 1.416 4.074 4.074v34.007h10.1c2.746 0 4.074 1.329 4.074 4.074s-1.328 4.074-4.074 4.074h-28.607c-2.656 0-4.074-1.328-4.074-4.074s1.418-4.074 4.074-4.074h10.362V41.03h-8.533c-2.744 0-4.073-1.329-4.073-4.074 0-2.658 1.329-4.074 4.073-4.074zm4.22-17.615a5.859 5.859 0 11-5.819-5.819 5.9 5.9 0 015.819 5.819zM246.978 36.958a4.589 4.589 0 01-.267 1.594L231.835 76.63a3.722 3.722 0 01-3.721 2.48h-5.933a3.689 3.689 0 01-3.808-2.48l-15.055-38.081a3.23 3.23 0 01-.355-1.594 4.084 4.084 0 014.164-4.074 3.8 3.8 0 013.718 2.656l14.348 36.134 13.9-36.134a3.8 3.8 0 013.72-2.656 4.084 4.084 0 014.165 4.077z"
|
|
30
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
31
|
+
fill: colored ? '#aa142d' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#aa142d') ? 'white' : 'currentColor'),
|
|
32
|
+
d: "M127.984 55.607L95.243 94.459c-1.286 1.372-2.084 3.777-1.365 5.5a4.705 4.705 0 004.4 2.914 4.191 4.191 0 003.16-1.563l40.191-42.714a4.417 4.417 0 00.042-6.042z"
|
|
33
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
34
|
+
fill: colored ? '#7c7469' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#7c7469') ? 'white' : 'currentColor'),
|
|
35
|
+
d: "M127.984 55.607l31.187-38.268c1.492-1.989 2.2-3.03 1.492-4.723a5.142 5.142 0 00-4.481-3.161 4.024 4.024 0 00-3.008 1.108L114.546 52.33a4.769 4.769 0 00.015 6.53l47.786 51.07a3.913 3.913 0 003.137 1.192 4.394 4.394 0 004.027-2.818c.719-1.727-.076-3.438-1.4-5.23L127.987 55.61"
|
|
36
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
37
|
+
fill: colored ? '#aa142d' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#aa142d') ? 'white' : 'currentColor'),
|
|
38
|
+
d: "M141.668 52.558L95.004 2.13S93.291.05 91.48.006a4.607 4.607 0 00-4.338 2.788c-.705 1.692-.2 2.88 1.349 5.1l40.093 48.422"
|
|
39
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
40
|
+
fill: colored ? '#7c7469' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#7c7469') ? 'white' : 'currentColor'),
|
|
41
|
+
d: "M32.445 32.884c5.018 0 8.206 3.312 8.206 8.4v37.831H5.143A4.813 4.813 0 010 74.186V61.157a8.256 8.256 0 017-8.148l25.507-3.572v-8.4H4.141A4.014 4.014 0 010 36.963c0-2.87 2.143-4.074 4.355-4.074zm.059 38.081V57.672l-24.354 3.4v9.9z"
|
|
42
|
+
}));
|
|
43
|
+
}
|
|
44
|
+
const ForwardRef = React.forwardRef(ArxivIcon);
|
|
45
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" data-name="primary logo" viewBox="0 0 246.978 111.119" fill="currentColor" aria-hidden="true">
|
|
2
|
+
<path fill="#7c7469" d="M69.406 32.884c1.859 0 3.1 1.24 3.985 3.453 1.062-2.213 2.568-3.453 4.694-3.453h14.878a4.062 4.062 0 014.074 4.074v7.828c0 2.656-1.327 4.074-4.074 4.074-2.656 0-4.074-1.418-4.074-4.074V41.03H78.35a2.411 2.411 0 00-2.656 2.745v27.188h10.007c2.658 0 4.074 1.329 4.074 4.074s-1.416 4.074-4.074 4.074h-26.39c-2.659 0-3.986-1.328-3.986-4.074s1.327-4.074 3.986-4.074h8.236V41.03h-7.263c-2.656 0-3.985-1.329-3.985-4.074 0-2.658 1.329-4.074 3.985-4.074zM181.068 32.884c2.656 0 4.074 1.416 4.074 4.074v34.007h10.1c2.746 0 4.074 1.329 4.074 4.074s-1.328 4.074-4.074 4.074h-28.607c-2.656 0-4.074-1.328-4.074-4.074s1.418-4.074 4.074-4.074h10.362V41.03h-8.533c-2.744 0-4.073-1.329-4.073-4.074 0-2.658 1.329-4.074 4.073-4.074zm4.22-17.615a5.859 5.859 0 11-5.819-5.819 5.9 5.9 0 015.819 5.819zM246.978 36.958a4.589 4.589 0 01-.267 1.594L231.835 76.63a3.722 3.722 0 01-3.721 2.48h-5.933a3.689 3.689 0 01-3.808-2.48l-15.055-38.081a3.23 3.23 0 01-.355-1.594 4.084 4.084 0 014.164-4.074 3.8 3.8 0 013.718 2.656l14.348 36.134 13.9-36.134a3.8 3.8 0 013.72-2.656 4.084 4.084 0 014.165 4.077z"/>
|
|
3
|
+
<path fill="#aa142d" d="M127.984 55.607L95.243 94.459c-1.286 1.372-2.084 3.777-1.365 5.5a4.705 4.705 0 004.4 2.914 4.191 4.191 0 003.16-1.563l40.191-42.714a4.417 4.417 0 00.042-6.042z"/>
|
|
4
|
+
<path fill="#7c7469" d="M127.984 55.607l31.187-38.268c1.492-1.989 2.2-3.03 1.492-4.723a5.142 5.142 0 00-4.481-3.161 4.024 4.024 0 00-3.008 1.108L114.546 52.33a4.769 4.769 0 00.015 6.53l47.786 51.07a3.913 3.913 0 003.137 1.192 4.394 4.394 0 004.027-2.818c.719-1.727-.076-3.438-1.4-5.23L127.987 55.61"/>
|
|
5
|
+
<path fill="#aa142d" d="M141.668 52.558L95.004 2.13S93.291.05 91.48.006a4.607 4.607 0 00-4.338 2.788c-.705 1.692-.2 2.88 1.349 5.1l40.093 48.422"/>
|
|
6
|
+
<path fill="#7c7469" d="M32.445 32.884c5.018 0 8.206 3.312 8.206 8.4v37.831H5.143A4.813 4.813 0 010 74.186V61.157a8.256 8.256 0 017-8.148l25.507-3.572v-8.4H4.141A4.014 4.014 0 010 36.963c0-2.87 2.143-4.074 4.355-4.074zm.059 38.081V57.672l-24.354 3.4v9.9z"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const ArxivMarkIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
|
|
3
|
+
export default ArxivMarkIcon;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
const sizeMap = {
|
|
4
|
+
"small": 16,
|
|
5
|
+
"medium": 32,
|
|
6
|
+
"large": 64
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
function ArxivMarkIcon({
|
|
10
|
+
title,
|
|
11
|
+
titleId,
|
|
12
|
+
size,
|
|
13
|
+
colored,
|
|
14
|
+
...props
|
|
15
|
+
}, svgRef) {
|
|
16
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
17
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
+
viewBox: "0 0 135.611 201",
|
|
19
|
+
fill: colored ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'),
|
|
20
|
+
"aria-hidden": "true",
|
|
21
|
+
height: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
|
|
22
|
+
ref: svgRef,
|
|
23
|
+
"aria-labelledby": titleId
|
|
24
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
25
|
+
id: titleId
|
|
26
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
fill: colored ? '#aa142d' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#aa142d') ? 'white' : 'currentColor'),
|
|
28
|
+
d: "M65.727 82.523l-42.324 49.375c-1.885 2.01-3.054 5.535-2 8.066a6.9 6.9 0 006.443 4.27c1.6 0 2.911-.56 4.631-2.289l52.364-54.278a8.927 8.927 0 00.061-12.584z"
|
|
29
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
fill: colored ? '#bdb9b4' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#bdb9b4') ? 'white' : 'currentColor'),
|
|
31
|
+
d: "M64.847 81.494l39.168-49.545c2.186-2.914 3.219-4.44 2.186-6.921a7.536 7.536 0 00-6.566-4.633 5.9 5.9 0 00-4.408 1.624L45.155 75.08c-3.816 3.816-3.808 8.753.023 12.584l70.031 73.438a5.738 5.738 0 004.6 1.748c2.833 0 4.67-1.667 5.9-4.131 1.054-2.531-.112-5.038-2.056-7.664l-58.8-69.561"
|
|
32
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
33
|
+
fill: colored ? '#aa142d' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#aa142d') ? 'white' : 'currentColor'),
|
|
34
|
+
d: "M84.902 75.08L16.514 3.114S14.003.066 11.349.002a6.75 6.75 0 00-6.357 4.084c-1.033 2.481-.291 4.223 1.977 7.47l58.758 70.967z"
|
|
35
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
36
|
+
d: "M81.361 201a2.2 2.2 0 01-1.895-1.1l-8.528-14.161-8.576 14.161a2.152 2.152 0 01-1.9 1.1 2.33 2.33 0 01-2.343-2.3 2.269 2.269 0 01.348-1.246l9.925-15.907-8.121-13.01a2.722 2.722 0 01-.351-1.247 2.331 2.331 0 012.347-2.292 2.093 2.093 0 011.894 1.046l6.779 11.42 6.734-11.42a2.011 2.011 0 011.843-1.046 2.268 2.268 0 012.346 2.292 2.7 2.7 0 01-.3 1.247l-8.079 13.015 9.825 15.907a1.956 1.956 0 01.4 1.246A2.363 2.363 0 0181.361 201zM38.109 175.555c1.021 0 1.7.681 2.188 1.9a2.817 2.817 0 012.578-1.9h8.169a2.231 2.231 0 012.237 2.237v4.3a1.983 1.983 0 01-2.237 2.237 2 2 0 01-2.237-2.237v-2.061H43.02a1.324 1.324 0 00-1.458 1.507v14.929h5.494a2.237 2.237 0 110 4.473H32.571a2.237 2.237 0 010-4.473h4.522v-16.438h-3.992a2.238 2.238 0 010-4.474zM99.42 175.555a2 2 0 012.237 2.237v18.673h5.543a2.237 2.237 0 110 4.473H91.494a2.237 2.237 0 110-4.473h5.69v-16.436h-4.686a2.237 2.237 0 010-4.474zm2.317-9.672a3.217 3.217 0 11-3.194-3.195 3.241 3.241 0 013.194 3.195zM135.611 177.792a2.527 2.527 0 01-.147.875l-8.169 20.91a2.042 2.042 0 01-2.043 1.361h-3.258a2.027 2.027 0 01-2.091-1.361l-8.266-20.91a1.78 1.78 0 01-.195-.875 2.242 2.242 0 012.286-2.237 2.086 2.086 0 012.042 1.459l7.878 19.84 7.634-19.84a2.087 2.087 0 012.043-1.459 2.242 2.242 0 012.286 2.237zM17.815 175.555a4.268 4.268 0 014.506 4.611v20.772h-19.5a2.643 2.643 0 01-2.824-2.706v-7.153a4.533 4.533 0 013.842-4.474l14-1.961v-4.615H2.271a2.2 2.2 0 01-2.274-2.237 2.173 2.173 0 012.391-2.237zm.032 20.91v-7.3L4.471 191.03v5.435z"
|
|
37
|
+
}));
|
|
38
|
+
}
|
|
39
|
+
const ForwardRef = React.forwardRef(ArxivMarkIcon);
|
|
40
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 135.611 201" fill="currentColor" aria-hidden="true">
|
|
2
|
+
<path fill="#aa142d" d="M65.727 82.523l-42.324 49.375c-1.885 2.01-3.054 5.535-2 8.066a6.9 6.9 0 006.443 4.27c1.6 0 2.911-.56 4.631-2.289l52.364-54.278a8.927 8.927 0 00.061-12.584z"/>
|
|
3
|
+
<path fill="#bdb9b4" d="M64.847 81.494l39.168-49.545c2.186-2.914 3.219-4.44 2.186-6.921a7.536 7.536 0 00-6.566-4.633 5.9 5.9 0 00-4.408 1.624L45.155 75.08c-3.816 3.816-3.808 8.753.023 12.584l70.031 73.438a5.738 5.738 0 004.6 1.748c2.833 0 4.67-1.667 5.9-4.131 1.054-2.531-.112-5.038-2.056-7.664l-58.8-69.561"/>
|
|
4
|
+
<path fill="#aa142d" d="M84.902 75.08L16.514 3.114S14.003.066 11.349.002a6.75 6.75 0 00-6.357 4.084c-1.033 2.481-.291 4.223 1.977 7.47l58.758 70.967z"/>
|
|
5
|
+
<path d="M81.361 201a2.2 2.2 0 01-1.895-1.1l-8.528-14.161-8.576 14.161a2.152 2.152 0 01-1.9 1.1 2.33 2.33 0 01-2.343-2.3 2.269 2.269 0 01.348-1.246l9.925-15.907-8.121-13.01a2.722 2.722 0 01-.351-1.247 2.331 2.331 0 012.347-2.292 2.093 2.093 0 011.894 1.046l6.779 11.42 6.734-11.42a2.011 2.011 0 011.843-1.046 2.268 2.268 0 012.346 2.292 2.7 2.7 0 01-.3 1.247l-8.079 13.015 9.825 15.907a1.956 1.956 0 01.4 1.246A2.363 2.363 0 0181.361 201zM38.109 175.555c1.021 0 1.7.681 2.188 1.9a2.817 2.817 0 012.578-1.9h8.169a2.231 2.231 0 012.237 2.237v4.3a1.983 1.983 0 01-2.237 2.237 2 2 0 01-2.237-2.237v-2.061H43.02a1.324 1.324 0 00-1.458 1.507v14.929h5.494a2.237 2.237 0 110 4.473H32.571a2.237 2.237 0 010-4.473h4.522v-16.438h-3.992a2.238 2.238 0 010-4.474zM99.42 175.555a2 2 0 012.237 2.237v18.673h5.543a2.237 2.237 0 110 4.473H91.494a2.237 2.237 0 110-4.473h5.69v-16.436h-4.686a2.237 2.237 0 010-4.474zm2.317-9.672a3.217 3.217 0 11-3.194-3.195 3.241 3.241 0 013.194 3.195zM135.611 177.792a2.527 2.527 0 01-.147.875l-8.169 20.91a2.042 2.042 0 01-2.043 1.361h-3.258a2.027 2.027 0 01-2.091-1.361l-8.266-20.91a1.78 1.78 0 01-.195-.875 2.242 2.242 0 012.286-2.237 2.086 2.086 0 012.042 1.459l7.878 19.84 7.634-19.84a2.087 2.087 0 012.043-1.459 2.242 2.242 0 012.286 2.237zM17.815 175.555a4.268 4.268 0 014.506 4.611v20.772h-19.5a2.643 2.643 0 01-2.824-2.706v-7.153a4.533 4.533 0 013.842-4.474l14-1.961v-4.615H2.271a2.2 2.2 0 01-2.274-2.237 2.173 2.173 0 012.391-2.237zm.032 20.91v-7.3L4.471 191.03v5.435z"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
|
|
2
|
+
import ArxivMarkIconSvgStr from './ArxivMarkIcon.svg';
|
|
3
|
+
const arxivMarkIconJupyterLab = new LabIcon({
|
|
4
|
+
name: '@datalayer/icons:arxiv-mark',
|
|
5
|
+
svgstr: ArxivMarkIconSvgStr,
|
|
6
|
+
});
|
|
7
|
+
export default arxivMarkIconJupyterLab;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const ArxivMarkSmallIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
|
|
3
|
+
export default ArxivMarkSmallIcon;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
const sizeMap = {
|
|
4
|
+
"small": 16,
|
|
5
|
+
"medium": 32,
|
|
6
|
+
"large": 64
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
function ArxivMarkSmallIcon({
|
|
10
|
+
title,
|
|
11
|
+
titleId,
|
|
12
|
+
size,
|
|
13
|
+
colored,
|
|
14
|
+
...props
|
|
15
|
+
}, svgRef) {
|
|
16
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
17
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
18
|
+
viewBox: "0 0 17.732 24.269",
|
|
19
|
+
fill: colored ? 'currentColor' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('currentColor') ? 'white' : 'currentColor'),
|
|
20
|
+
"aria-hidden": "true",
|
|
21
|
+
height: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
|
|
22
|
+
ref: svgRef,
|
|
23
|
+
"aria-labelledby": titleId
|
|
24
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
25
|
+
id: titleId
|
|
26
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
fill: colored ? '#bdb9b4' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#bdb9b4') ? 'white' : 'currentColor'),
|
|
28
|
+
d: "M6.565 9.368l2.266 2.738 6.674-7.84c.353-.47.52-.717.353-1.117a1.218 1.218 0 00-1.061-.748.953.953 0 00-.712.262z"
|
|
29
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
fill: colored ? '#b31b1b' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#b31b1b') ? 'white' : 'currentColor'),
|
|
31
|
+
d: "M12.541 10.677L1.935.503a1.413 1.413 0 00-.834-.5 1.09 1.09 0 00-1.027.66c-.167.4-.047.681.319 1.206l8.44 10.242-6.282 7.716a1.336 1.336 0 00-.323 1.3 1.114 1.114 0 001.04.69.992.992 0 00.748-.365l8.519-7.92a1.924 1.924 0 00.006-2.855z"
|
|
32
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
33
|
+
fill: colored ? '#bdb9b4' : (['#fff', '#fffff', 'white', '#FFF', '#FFFFFF'].includes('#bdb9b4') ? 'white' : 'currentColor'),
|
|
34
|
+
d: "M17.336 22.364L8.811 12.089 6.546 9.352l-1.389 1.254a2.063 2.063 0 000 2.965L15.969 23.99a.925.925 0 00.742.282 1.039 1.039 0 00.953-.667 1.261 1.261 0 00-.328-1.241z"
|
|
35
|
+
}));
|
|
36
|
+
}
|
|
37
|
+
const ForwardRef = React.forwardRef(ArxivMarkSmallIcon);
|
|
38
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17.732 24.269" fill="currentColor" aria-hidden="true">
|
|
2
|
+
<path fill="#bdb9b4" d="M6.565 9.368l2.266 2.738 6.674-7.84c.353-.47.52-.717.353-1.117a1.218 1.218 0 00-1.061-.748.953.953 0 00-.712.262z"/>
|
|
3
|
+
<path fill="#b31b1b" d="M12.541 10.677L1.935.503a1.413 1.413 0 00-.834-.5 1.09 1.09 0 00-1.027.66c-.167.4-.047.681.319 1.206l8.44 10.242-6.282 7.716a1.336 1.336 0 00-.323 1.3 1.114 1.114 0 001.04.69.992.992 0 00.748-.365l8.519-7.92a1.924 1.924 0 00.006-2.855z"/>
|
|
4
|
+
<path fill="#bdb9b4" d="M17.336 22.364L8.811 12.089 6.546 9.352l-1.389 1.254a2.063 2.063 0 000 2.965L15.969 23.99a.925.925 0 00.742.282 1.039 1.039 0 00.953-.667 1.261 1.261 0 00-.328-1.241z"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
|
|
2
|
+
import ArxivMarkSmallIconSvgStr from './ArxivMarkSmallIcon.svg';
|
|
3
|
+
const arxivMarkSmallIconJupyterLab = new LabIcon({
|
|
4
|
+
name: '@datalayer/icons:arxiv-mark-small',
|
|
5
|
+
svgstr: ArxivMarkSmallIconSvgStr,
|
|
6
|
+
});
|
|
7
|
+
export default arxivMarkSmallIconJupyterLab;
|
package/data1/esm/index.d.ts
CHANGED
|
@@ -16,6 +16,12 @@ export { default as ApacheIcon } from './ApacheIcon'
|
|
|
16
16
|
// export { default as apacheIconLabIcon } from './ApacheIconLabIcon'
|
|
17
17
|
export { default as ArrowSwitchVerticalIcon } from './ArrowSwitchVerticalIcon'
|
|
18
18
|
// export { default as arrowSwitchVerticalIconLabIcon } from './ArrowSwitchVerticalIconLabIcon'
|
|
19
|
+
export { default as ArxivMarkSmallIcon } from './ArxivMarkSmallIcon'
|
|
20
|
+
// export { default as arxivMarkSmallIconLabIcon } from './ArxivMarkSmallIconLabIcon'
|
|
21
|
+
export { default as ArxivMarkIcon } from './ArxivMarkIcon'
|
|
22
|
+
// export { default as arxivMarkIconLabIcon } from './ArxivMarkIconLabIcon'
|
|
23
|
+
export { default as ArxivIcon } from './ArxivIcon'
|
|
24
|
+
// export { default as arxivIconLabIcon } from './ArxivIconLabIcon'
|
|
19
25
|
export { default as AwsS3BucketIcon } from './AwsS3BucketIcon'
|
|
20
26
|
// export { default as awsS3BucketIconLabIcon } from './AwsS3BucketIconLabIcon'
|
|
21
27
|
export { default as AwsIcon } from './AwsIcon'
|
package/data1/esm/index.js
CHANGED
|
@@ -16,6 +16,12 @@ export { default as ApacheIcon } from './ApacheIcon.js'
|
|
|
16
16
|
// export { default as apacheIconLabIcon } from './ApacheIconLabIcon.js'
|
|
17
17
|
export { default as ArrowSwitchVerticalIcon } from './ArrowSwitchVerticalIcon.js'
|
|
18
18
|
// export { default as arrowSwitchVerticalIconLabIcon } from './ArrowSwitchVerticalIconLabIcon.js'
|
|
19
|
+
export { default as ArxivMarkSmallIcon } from './ArxivMarkSmallIcon.js'
|
|
20
|
+
// export { default as arxivMarkSmallIconLabIcon } from './ArxivMarkSmallIconLabIcon.js'
|
|
21
|
+
export { default as ArxivMarkIcon } from './ArxivMarkIcon.js'
|
|
22
|
+
// export { default as arxivMarkIconLabIcon } from './ArxivMarkIconLabIcon.js'
|
|
23
|
+
export { default as ArxivIcon } from './ArxivIcon.js'
|
|
24
|
+
// export { default as arxivIconLabIcon } from './ArxivIconLabIcon.js'
|
|
19
25
|
export { default as AwsS3BucketIcon } from './AwsS3BucketIcon.js'
|
|
20
26
|
// export { default as awsS3BucketIconLabIcon } from './AwsS3BucketIconLabIcon.js'
|
|
21
27
|
export { default as AwsIcon } from './AwsIcon.js'
|
package/data1/index.d.ts
CHANGED
|
@@ -16,6 +16,12 @@ export { default as ApacheIcon } from './ApacheIcon'
|
|
|
16
16
|
// export { default as apacheIconLabIcon } from './ApacheIconLabIcon'
|
|
17
17
|
export { default as ArrowSwitchVerticalIcon } from './ArrowSwitchVerticalIcon'
|
|
18
18
|
// export { default as arrowSwitchVerticalIconLabIcon } from './ArrowSwitchVerticalIconLabIcon'
|
|
19
|
+
export { default as ArxivMarkSmallIcon } from './ArxivMarkSmallIcon'
|
|
20
|
+
// export { default as arxivMarkSmallIconLabIcon } from './ArxivMarkSmallIconLabIcon'
|
|
21
|
+
export { default as ArxivMarkIcon } from './ArxivMarkIcon'
|
|
22
|
+
// export { default as arxivMarkIconLabIcon } from './ArxivMarkIconLabIcon'
|
|
23
|
+
export { default as ArxivIcon } from './ArxivIcon'
|
|
24
|
+
// export { default as arxivIconLabIcon } from './ArxivIconLabIcon'
|
|
19
25
|
export { default as AwsS3BucketIcon } from './AwsS3BucketIcon'
|
|
20
26
|
// export { default as awsS3BucketIconLabIcon } from './AwsS3BucketIconLabIcon'
|
|
21
27
|
export { default as AwsIcon } from './AwsIcon'
|
package/data1/index.js
CHANGED
|
@@ -16,6 +16,12 @@ module.exports.ApacheIcon = require("./ApacheIcon.js")
|
|
|
16
16
|
// module.exports.apacheIconLabIcon = require("./ApacheIconLabIcon.js")
|
|
17
17
|
module.exports.ArrowSwitchVerticalIcon = require("./ArrowSwitchVerticalIcon.js")
|
|
18
18
|
// module.exports.arrowSwitchVerticalIconLabIcon = require("./ArrowSwitchVerticalIconLabIcon.js")
|
|
19
|
+
module.exports.ArxivMarkSmallIcon = require("./ArxivMarkSmallIcon.js")
|
|
20
|
+
// module.exports.arxivMarkSmallIconLabIcon = require("./ArxivMarkSmallIconLabIcon.js")
|
|
21
|
+
module.exports.ArxivMarkIcon = require("./ArxivMarkIcon.js")
|
|
22
|
+
// module.exports.arxivMarkIconLabIcon = require("./ArxivMarkIconLabIcon.js")
|
|
23
|
+
module.exports.ArxivIcon = require("./ArxivIcon.js")
|
|
24
|
+
// module.exports.arxivIconLabIcon = require("./ArxivIconLabIcon.js")
|
|
19
25
|
module.exports.AwsS3BucketIcon = require("./AwsS3BucketIcon.js")
|
|
20
26
|
// module.exports.awsS3BucketIconLabIcon = require("./AwsS3BucketIconLabIcon.js")
|
|
21
27
|
module.exports.AwsIcon = require("./AwsIcon.js")
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const JovyanIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
|
|
3
|
+
export default JovyanIcon;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
|
|
3
|
+
const sizeMap = {
|
|
4
|
+
"small": 16,
|
|
5
|
+
"medium": 32,
|
|
6
|
+
"large": 64
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
function JovyanIcon({
|
|
10
|
+
title,
|
|
11
|
+
titleId,
|
|
12
|
+
size,
|
|
13
|
+
...props
|
|
14
|
+
}, svgRef) {
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
viewBox: "0 0 72 72",
|
|
18
|
+
fill: "currentColor",
|
|
19
|
+
"aria-hidden": "true",
|
|
20
|
+
ref: svgRef,
|
|
21
|
+
width: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
|
|
22
|
+
"aria-labelledby": titleId
|
|
23
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
24
|
+
id: titleId
|
|
25
|
+
}, title) : null, /*#__PURE__*/React.createElement("g", {
|
|
26
|
+
fill: "#8967AA"
|
|
27
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
d: "M10 21v14h3v3h3v7h6v6h6v-6h16v6h6v-6h6v-7h3v-3h3V20h-6v5h-7v-5h-4v-6h-6v6h-7v-6h-6v6h-4v5h-6v-5h-6zM16 51h6v6h-6zM50 51h6v6h-6z"
|
|
29
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
30
|
+
stroke: "#000",
|
|
31
|
+
strokeLinecap: "round",
|
|
32
|
+
strokeLinejoin: "round",
|
|
33
|
+
strokeWidth: 2
|
|
34
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
35
|
+
d: "M25.175 31h3.6v6h-3.6z"
|
|
36
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
37
|
+
fill: "none",
|
|
38
|
+
d: "M22 45h-6v-6M22.583 25v-5H26M48.708 25v-5h-3.416M13 35h-3V20h6v15M56 35V20h6v15h-3M26 20v-6h6v6M39 20v-6h6v6M16 35h3v3h-6v-3M59 35v3h-6v-3h3M16 51h6v6h-6zM50 51h6v6h-6zM28 45v6h-6v-6M50 45h6v-6M44 45v6h6v-6"
|
|
39
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
40
|
+
d: "M43.425 31h3.6v6h-3.6z"
|
|
41
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
42
|
+
fill: "none",
|
|
43
|
+
d: "M44 45h0zM39 20h0zM16 25h0zM49 25h0zM28 45h16M32 20h7M16 25h6M49 25h7"
|
|
44
|
+
})));
|
|
45
|
+
}
|
|
46
|
+
const ForwardRef = React.forwardRef(JovyanIcon);
|
|
47
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 72" fill="currentColor" aria-hidden="true">
|
|
2
|
+
<g fill="#8967AA">
|
|
3
|
+
<path d="M10 21v14h3v3h3v7h6v6h6v-6h16v6h6v-6h6v-7h3v-3h3V20h-6v5h-7v-5h-4v-6h-6v6h-7v-6h-6v6h-4v5h-6v-5h-6zM16 51h6v6h-6zM50 51h6v6h-6z"/>
|
|
4
|
+
</g>
|
|
5
|
+
<g stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
|
|
6
|
+
<path d="M25.175 31h3.6v6h-3.6z"/>
|
|
7
|
+
<path fill="none" d="M22 45h-6v-6M22.583 25v-5H26M48.708 25v-5h-3.416M13 35h-3V20h6v15M56 35V20h6v15h-3M26 20v-6h6v6M39 20v-6h6v6M16 35h3v3h-6v-3M59 35v3h-6v-3h3M16 51h6v6h-6zM50 51h6v6h-6zM28 45v6h-6v-6M50 45h6v-6M44 45v6h6v-6"/>
|
|
8
|
+
<path d="M43.425 31h3.6v6h-3.6z"/>
|
|
9
|
+
<path fill="none" d="M44 45h0zM39 20h0zM16 25h0zM49 25h0zM28 45h16M32 20h7M16 25h6M49 25h7"/>
|
|
10
|
+
</g>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
|
|
2
|
+
import JovyanIconSvgStr from './JovyanIcon.svg';
|
|
3
|
+
const jovyanIconJupyterLab = new LabIcon({
|
|
4
|
+
name: '@datalayer/icons:jovyan',
|
|
5
|
+
svgstr: JovyanIconSvgStr,
|
|
6
|
+
});
|
|
7
|
+
export default jovyanIconJupyterLab;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
declare const JovyanIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string, size?: "small" | "medium" | "large" | number, colored?: boolean } & React.RefAttributes<SVGSVGElement>>;
|
|
3
|
+
export default JovyanIcon;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
const sizeMap = {
|
|
4
|
+
"small": 16,
|
|
5
|
+
"medium": 32,
|
|
6
|
+
"large": 64
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
function JovyanIcon({
|
|
10
|
+
title,
|
|
11
|
+
titleId,
|
|
12
|
+
size,
|
|
13
|
+
...props
|
|
14
|
+
}, svgRef) {
|
|
15
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
viewBox: "0 0 72 72",
|
|
18
|
+
fill: "currentColor",
|
|
19
|
+
"aria-hidden": "true",
|
|
20
|
+
ref: svgRef,
|
|
21
|
+
width: size ? typeof size === "string" ? sizeMap[size] : size : "16px",
|
|
22
|
+
"aria-labelledby": titleId
|
|
23
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
24
|
+
id: titleId
|
|
25
|
+
}, title) : null, /*#__PURE__*/React.createElement("g", {
|
|
26
|
+
fill: "#8967AA"
|
|
27
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
28
|
+
d: "M10 21v14h3v3h3v7h6v6h6v-6h16v6h6v-6h6v-7h3v-3h3V20h-6v5h-7v-5h-4v-6h-6v6h-7v-6h-6v6h-4v5h-6v-5h-6zM16 51h6v6h-6zM50 51h6v6h-6z"
|
|
29
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
30
|
+
stroke: "#000",
|
|
31
|
+
strokeLinecap: "round",
|
|
32
|
+
strokeLinejoin: "round",
|
|
33
|
+
strokeWidth: 2
|
|
34
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
35
|
+
d: "M25.175 31h3.6v6h-3.6z"
|
|
36
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
37
|
+
fill: "none",
|
|
38
|
+
d: "M22 45h-6v-6M22.583 25v-5H26M48.708 25v-5h-3.416M13 35h-3V20h6v15M56 35V20h6v15h-3M26 20v-6h6v6M39 20v-6h6v6M16 35h3v3h-6v-3M59 35v3h-6v-3h3M16 51h6v6h-6zM50 51h6v6h-6zM28 45v6h-6v-6M50 45h6v-6M44 45v6h6v-6"
|
|
39
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
40
|
+
d: "M43.425 31h3.6v6h-3.6z"
|
|
41
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
42
|
+
fill: "none",
|
|
43
|
+
d: "M44 45h0zM39 20h0zM16 25h0zM49 25h0zM28 45h16M32 20h7M16 25h6M49 25h7"
|
|
44
|
+
})));
|
|
45
|
+
}
|
|
46
|
+
const ForwardRef = React.forwardRef(JovyanIcon);
|
|
47
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72 72" fill="currentColor" aria-hidden="true">
|
|
2
|
+
<g fill="#8967AA">
|
|
3
|
+
<path d="M10 21v14h3v3h3v7h6v6h6v-6h16v6h6v-6h6v-7h3v-3h3V20h-6v5h-7v-5h-4v-6h-6v6h-7v-6h-6v6h-4v5h-6v-5h-6zM16 51h6v6h-6zM50 51h6v6h-6z"/>
|
|
4
|
+
</g>
|
|
5
|
+
<g stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
|
|
6
|
+
<path d="M25.175 31h3.6v6h-3.6z"/>
|
|
7
|
+
<path fill="none" d="M22 45h-6v-6M22.583 25v-5H26M48.708 25v-5h-3.416M13 35h-3V20h6v15M56 35V20h6v15h-3M26 20v-6h6v6M39 20v-6h6v6M16 35h3v3h-6v-3M59 35v3h-6v-3h3M16 51h6v6h-6zM50 51h6v6h-6zM28 45v6h-6v-6M50 45h6v-6M44 45v6h6v-6"/>
|
|
8
|
+
<path d="M43.425 31h3.6v6h-3.6z"/>
|
|
9
|
+
<path fill="none" d="M44 45h0zM39 20h0zM16 25h0zM49 25h0zM28 45h16M32 20h7M16 25h6M49 25h7"/>
|
|
10
|
+
</g>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { LabIcon } from '@jupyterlab/ui-components/lib/icon/labicon';
|
|
2
|
+
import JovyanIconSvgStr from './JovyanIcon.svg';
|
|
3
|
+
const jovyanIconJupyterLab = new LabIcon({
|
|
4
|
+
name: '@datalayer/icons:jovyan',
|
|
5
|
+
svgstr: JovyanIconSvgStr,
|
|
6
|
+
});
|
|
7
|
+
export default jovyanIconJupyterLab;
|
package/data2/esm/index.d.ts
CHANGED
|
@@ -184,6 +184,8 @@ export { default as IoIcon } from './IoIcon'
|
|
|
184
184
|
// export { default as ioIconLabIcon } from './IoIconLabIcon'
|
|
185
185
|
export { default as JavascriptIcon } from './JavascriptIcon'
|
|
186
186
|
// export { default as javascriptIconLabIcon } from './JavascriptIconLabIcon'
|
|
187
|
+
export { default as JovyanIcon } from './JovyanIcon'
|
|
188
|
+
// export { default as jovyanIconLabIcon } from './JovyanIconLabIcon'
|
|
187
189
|
export { default as KeyOutlineIcon } from './KeyOutlineIcon'
|
|
188
190
|
// export { default as keyOutlineIconLabIcon } from './KeyOutlineIconLabIcon'
|
|
189
191
|
export { default as KeyIcon } from './KeyIcon'
|
package/data2/esm/index.js
CHANGED
|
@@ -184,6 +184,8 @@ export { default as IoIcon } from './IoIcon.js'
|
|
|
184
184
|
// export { default as ioIconLabIcon } from './IoIconLabIcon.js'
|
|
185
185
|
export { default as JavascriptIcon } from './JavascriptIcon.js'
|
|
186
186
|
// export { default as javascriptIconLabIcon } from './JavascriptIconLabIcon.js'
|
|
187
|
+
export { default as JovyanIcon } from './JovyanIcon.js'
|
|
188
|
+
// export { default as jovyanIconLabIcon } from './JovyanIconLabIcon.js'
|
|
187
189
|
export { default as KeyOutlineIcon } from './KeyOutlineIcon.js'
|
|
188
190
|
// export { default as keyOutlineIconLabIcon } from './KeyOutlineIconLabIcon.js'
|
|
189
191
|
export { default as KeyIcon } from './KeyIcon.js'
|
package/data2/index.d.ts
CHANGED
|
@@ -184,6 +184,8 @@ export { default as IoIcon } from './IoIcon'
|
|
|
184
184
|
// export { default as ioIconLabIcon } from './IoIconLabIcon'
|
|
185
185
|
export { default as JavascriptIcon } from './JavascriptIcon'
|
|
186
186
|
// export { default as javascriptIconLabIcon } from './JavascriptIconLabIcon'
|
|
187
|
+
export { default as JovyanIcon } from './JovyanIcon'
|
|
188
|
+
// export { default as jovyanIconLabIcon } from './JovyanIconLabIcon'
|
|
187
189
|
export { default as KeyOutlineIcon } from './KeyOutlineIcon'
|
|
188
190
|
// export { default as keyOutlineIconLabIcon } from './KeyOutlineIconLabIcon'
|
|
189
191
|
export { default as KeyIcon } from './KeyIcon'
|
package/data2/index.js
CHANGED
|
@@ -184,6 +184,8 @@ module.exports.IoIcon = require("./IoIcon.js")
|
|
|
184
184
|
// module.exports.ioIconLabIcon = require("./IoIconLabIcon.js")
|
|
185
185
|
module.exports.JavascriptIcon = require("./JavascriptIcon.js")
|
|
186
186
|
// module.exports.javascriptIconLabIcon = require("./JavascriptIconLabIcon.js")
|
|
187
|
+
module.exports.JovyanIcon = require("./JovyanIcon.js")
|
|
188
|
+
// module.exports.jovyanIconLabIcon = require("./JovyanIconLabIcon.js")
|
|
187
189
|
module.exports.KeyOutlineIcon = require("./KeyOutlineIcon.js")
|
|
188
190
|
// module.exports.keyOutlineIconLabIcon = require("./KeyOutlineIconLabIcon.js")
|
|
189
191
|
module.exports.KeyIcon = require("./KeyIcon.js")
|