vira 26.12.0 → 26.13.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.
|
@@ -10,5 +10,5 @@ export declare const viraIconCssVars: import("lit-css-vars").CssVarDefinitions<{
|
|
|
10
10
|
readonly 'vira-icon-stroke-color': "currentColor";
|
|
11
11
|
/** To be used for coloring an icon's fill. */
|
|
12
12
|
readonly 'vira-icon-fill-color': "none";
|
|
13
|
-
readonly 'vira-icon-stroke-width': "
|
|
13
|
+
readonly 'vira-icon-stroke-width': "1.5px";
|
|
14
14
|
}>;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { html } from 'element-vir';
|
|
2
|
+
import { viraIconCssVars } from '../icon-css-vars.js';
|
|
3
|
+
import { defineIcon } from '../icon-svg.js';
|
|
4
|
+
/**
|
|
5
|
+
* A bell icon.
|
|
6
|
+
*
|
|
7
|
+
* @category Icon
|
|
8
|
+
* @category SVG
|
|
9
|
+
* @see https://electrovir.github.io/vira/book/icons/bell24icon
|
|
10
|
+
*/
|
|
11
|
+
export const Bell24Icon = defineIcon({
|
|
12
|
+
name: 'Bell24Icon',
|
|
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;stroke-linecap:round;stroke-linejoin:round"
|
|
18
|
+
viewBox="0 0 24 24"
|
|
19
|
+
width="24"
|
|
20
|
+
height="24"
|
|
21
|
+
>
|
|
22
|
+
<path
|
|
23
|
+
d="M11.3 4c-2.7 0-5 3.5-5 6.4v3.3q0 1.2-.7 2.2l-1 1.1h14.8l-1-1.1q-.7-1-.8-2.2v-3.3c0-3-2.3-6.4-5-6.4zM10 17v1q.2 1.8 2 2a2 2 0 0 0 2-2v-1"
|
|
24
|
+
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
25
|
+
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
26
|
+
fill=${viraIconCssVars['vira-icon-fill-color'].value}
|
|
27
|
+
/>
|
|
28
|
+
</svg>
|
|
29
|
+
`,
|
|
30
|
+
});
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/** This file is automatically updated by update-icon-exports.ts */
|
|
2
2
|
export * from './icon-css-vars.js';
|
|
3
3
|
export * from './icon-svg.js';
|
|
4
|
+
export * from './icon-svgs/bell-24.icon.js';
|
|
4
5
|
export * from './icon-svgs/chat-24.icon.js';
|
|
5
6
|
export * from './icon-svgs/check-24.icon.js';
|
|
6
7
|
export * from './icon-svgs/chevron-up-24.icon.js';
|
|
@@ -35,6 +36,7 @@ export * from './icon-svgs/upload-24.icon.js';
|
|
|
35
36
|
* @category Icon
|
|
36
37
|
*/
|
|
37
38
|
export declare const allIconsByName: {
|
|
39
|
+
readonly Bell24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
38
40
|
readonly Chat24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
39
41
|
readonly Check24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
40
42
|
readonly ChevronUp24Icon: import("./icon-svg.js").ViraIconSvg;
|
package/dist/icons/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/** This file is automatically updated by update-icon-exports.ts */
|
|
2
|
+
import { Bell24Icon } from './icon-svgs/bell-24.icon.js';
|
|
2
3
|
import { Chat24Icon } from './icon-svgs/chat-24.icon.js';
|
|
3
4
|
import { Check24Icon } from './icon-svgs/check-24.icon.js';
|
|
4
5
|
import { ChevronUp24Icon } from './icon-svgs/chevron-up-24.icon.js';
|
|
@@ -29,6 +30,7 @@ import { StatusWarning24Icon } from './icon-svgs/status-warning-24.icon.js';
|
|
|
29
30
|
import { Upload24Icon } from './icon-svgs/upload-24.icon.js';
|
|
30
31
|
export * from './icon-css-vars.js';
|
|
31
32
|
export * from './icon-svg.js';
|
|
33
|
+
export * from './icon-svgs/bell-24.icon.js';
|
|
32
34
|
export * from './icon-svgs/chat-24.icon.js';
|
|
33
35
|
export * from './icon-svgs/check-24.icon.js';
|
|
34
36
|
export * from './icon-svgs/chevron-up-24.icon.js';
|
|
@@ -63,6 +65,7 @@ export * from './icon-svgs/upload-24.icon.js';
|
|
|
63
65
|
* @category Icon
|
|
64
66
|
*/
|
|
65
67
|
export const allIconsByName = {
|
|
68
|
+
Bell24Icon,
|
|
66
69
|
Chat24Icon,
|
|
67
70
|
Check24Icon,
|
|
68
71
|
ChevronUp24Icon,
|