vira 26.11.2 → 26.12.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.
|
@@ -14,13 +14,13 @@ export const ExternalLink24Icon = defineIcon({
|
|
|
14
14
|
<svg
|
|
15
15
|
xmlns="http://www.w3.org/2000/svg"
|
|
16
16
|
xml:space="preserve"
|
|
17
|
-
style="fill-rule:evenodd;clip-rule:evenodd;stroke-
|
|
17
|
+
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round"
|
|
18
18
|
viewBox="0 0 24 24"
|
|
19
19
|
width="24"
|
|
20
20
|
height="24"
|
|
21
21
|
>
|
|
22
22
|
<path
|
|
23
|
-
d="M11 7H6a2 2 0 0 0-2
|
|
23
|
+
d="M11 7H6a2 2 0 0 0-2 2v9q.2 1.8 2 2h9a2 2 0 0 0 2-2v-5"
|
|
24
24
|
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
25
25
|
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
26
26
|
fill=${viraIconCssVars['vira-icon-fill-color'].value}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { html } from 'element-vir';
|
|
2
|
+
import { viraIconCssVars } from '../icon-css-vars.js';
|
|
3
|
+
import { defineIcon } from '../icon-svg.js';
|
|
4
|
+
/**
|
|
5
|
+
* An upload icon.
|
|
6
|
+
*
|
|
7
|
+
* @category Icon
|
|
8
|
+
* @category SVG
|
|
9
|
+
* @see https://electrovir.github.io/vira/book/icons/upload24icon
|
|
10
|
+
*/
|
|
11
|
+
export const Upload24Icon = defineIcon({
|
|
12
|
+
name: 'Upload24Icon',
|
|
13
|
+
svgTemplate: html `
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xml:space="preserve"
|
|
17
|
+
style="fill-rule:evenodd;clip-rule:evenodd"
|
|
18
|
+
viewBox="0 0 24 24"
|
|
19
|
+
width="24"
|
|
20
|
+
height="24"
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
d="M4 14v6h16v-6"
|
|
24
|
+
style="fill-rule:nonzero;"
|
|
25
|
+
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
26
|
+
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
27
|
+
fill=${viraIconCssVars['vira-icon-fill-color'].value}
|
|
28
|
+
/>
|
|
29
|
+
<path
|
|
30
|
+
d="M12 15V4m4 4-4-4-4 4"
|
|
31
|
+
fill="none"
|
|
32
|
+
style="fill-rule:nonzero"
|
|
33
|
+
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
34
|
+
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
35
|
+
/>
|
|
36
|
+
</svg>
|
|
37
|
+
`,
|
|
38
|
+
});
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ export * from './icon-svgs/status-failure-24.icon.js';
|
|
|
28
28
|
export * from './icon-svgs/status-in-progress-24.icon.js';
|
|
29
29
|
export * from './icon-svgs/status-success-24.icon.js';
|
|
30
30
|
export * from './icon-svgs/status-warning-24.icon.js';
|
|
31
|
+
export * from './icon-svgs/upload-24.icon.js';
|
|
31
32
|
/**
|
|
32
33
|
* All icons within vira by name.
|
|
33
34
|
*
|
|
@@ -61,4 +62,5 @@ export declare const allIconsByName: {
|
|
|
61
62
|
readonly StatusInProgress24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
62
63
|
readonly StatusSuccess24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
63
64
|
readonly StatusWarning24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
65
|
+
readonly Upload24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
64
66
|
};
|
package/dist/icons/index.js
CHANGED
|
@@ -26,6 +26,7 @@ import { StatusFailure24Icon } from './icon-svgs/status-failure-24.icon.js';
|
|
|
26
26
|
import { StatusInProgress24Icon } from './icon-svgs/status-in-progress-24.icon.js';
|
|
27
27
|
import { StatusSuccess24Icon } from './icon-svgs/status-success-24.icon.js';
|
|
28
28
|
import { StatusWarning24Icon } from './icon-svgs/status-warning-24.icon.js';
|
|
29
|
+
import { Upload24Icon } from './icon-svgs/upload-24.icon.js';
|
|
29
30
|
export * from './icon-css-vars.js';
|
|
30
31
|
export * from './icon-svg.js';
|
|
31
32
|
export * from './icon-svgs/chat-24.icon.js';
|
|
@@ -55,6 +56,7 @@ export * from './icon-svgs/status-failure-24.icon.js';
|
|
|
55
56
|
export * from './icon-svgs/status-in-progress-24.icon.js';
|
|
56
57
|
export * from './icon-svgs/status-success-24.icon.js';
|
|
57
58
|
export * from './icon-svgs/status-warning-24.icon.js';
|
|
59
|
+
export * from './icon-svgs/upload-24.icon.js';
|
|
58
60
|
/**
|
|
59
61
|
* All icons within vira by name.
|
|
60
62
|
*
|
|
@@ -88,4 +90,5 @@ export const allIconsByName = {
|
|
|
88
90
|
StatusInProgress24Icon,
|
|
89
91
|
StatusSuccess24Icon,
|
|
90
92
|
StatusWarning24Icon,
|
|
93
|
+
Upload24Icon,
|
|
91
94
|
};
|