slippers-ui 3.1.44 → 3.1.45
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/icons/Shield.vue +3 -0
- package/icons/index.ts +1 -0
- package/icons.d.ts +1 -0
- package/package.json +1 -1
package/icons/Shield.vue
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M2.5 5.4V3.132l4.75-1.357v11.608l-1.782-1.528A8.5 8.5 0 0 1 2.5 5.401Zm6.25 7.982 1.782-1.528A8.5 8.5 0 0 0 13.5 5.401V3.13L8.75 1.774v11.608ZM1 2l7-2 7 2v3.4a10 10 0 0 1-3.492 7.593L8 16l-3.508-3.007A10 10 0 0 1 1 5.401V2Z" fill="currentColor"/></svg>
|
|
3
|
+
</template>
|
package/icons/index.ts
CHANGED
|
@@ -343,6 +343,7 @@ export { default as SecurityOwner } from './SecurityOwner.vue';
|
|
|
343
343
|
export { default as SecurityWarning } from './SecurityWarning.vue';
|
|
344
344
|
export { default as Server } from './Server.vue';
|
|
345
345
|
export { default as ServerAlt } from './ServerAlt.vue';
|
|
346
|
+
export { default as Shield } from './Shield.vue';
|
|
346
347
|
export { default as ShieldCheck } from './ShieldCheck.vue';
|
|
347
348
|
export { default as ShieldCheckAlt2 } from './ShieldCheckAlt2.vue';
|
|
348
349
|
export { default as ShieldCheckAlt3 } from './ShieldCheckAlt3.vue';
|
package/icons.d.ts
CHANGED
|
@@ -352,6 +352,7 @@ declare module 'slippers-ui/icons' {
|
|
|
352
352
|
export const SecurityWarning: IconComponent;
|
|
353
353
|
export const Server: IconComponent;
|
|
354
354
|
export const ServerAlt: IconComponent;
|
|
355
|
+
export const Shield: IconComponent;
|
|
355
356
|
export const ShieldCheck: IconComponent;
|
|
356
357
|
export const ShieldCheckAlt2: IconComponent;
|
|
357
358
|
export const ShieldCheckAlt3: IconComponent;
|