@qall/icons 0.1.1 → 0.1.2
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/icons/Blocker.d.ts +34 -0
- package/dist/icons/Blocker.js +34 -0
- package/dist/icons/Critical.d.ts +34 -0
- package/dist/icons/Critical.js +34 -0
- package/dist/icons/High.d.ts +34 -0
- package/dist/icons/High.js +34 -0
- package/dist/icons/Highest.d.ts +34 -0
- package/dist/icons/Highest.js +34 -0
- package/dist/icons/Low.d.ts +34 -0
- package/dist/icons/Low.js +34 -0
- package/dist/icons/Lowest.d.ts +34 -0
- package/dist/icons/Lowest.js +34 -0
- package/dist/icons/Major.d.ts +34 -0
- package/dist/icons/Major.js +34 -0
- package/dist/icons/Medium.d.ts +34 -0
- package/dist/icons/Medium.js +34 -0
- package/dist/icons/Minor.d.ts +34 -0
- package/dist/icons/Minor.js +34 -0
- package/dist/icons/Trivial.d.ts +34 -0
- package/dist/icons/Trivial.js +34 -0
- package/dist/icons/UserCheckColored.d.ts +34 -0
- package/dist/icons/UserCheckColored.js +34 -0
- package/dist/icons/UserQuestionColored.d.ts +34 -0
- package/dist/icons/UserQuestionColored.js +34 -0
- package/dist/icons/index.d.ts +12 -0
- package/dist/icons/index.js +12 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.js +12 -0
- package/package.json +1 -1
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export declare const Blocker: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
size: {
|
|
3
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
title: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
decorative: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
size: {
|
|
18
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
title: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
decorative: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
}>> & Readonly<{}>, {
|
|
30
|
+
size: string | number;
|
|
31
|
+
title: string;
|
|
32
|
+
decorative: boolean;
|
|
33
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
34
|
+
export default Blocker;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
export const Blocker = defineComponent({
|
|
3
|
+
name: "Blocker",
|
|
4
|
+
inheritAttrs: false,
|
|
5
|
+
props: {
|
|
6
|
+
size: {
|
|
7
|
+
type: [String, Number],
|
|
8
|
+
default: "1em"
|
|
9
|
+
},
|
|
10
|
+
title: {
|
|
11
|
+
type: String,
|
|
12
|
+
default: ""
|
|
13
|
+
},
|
|
14
|
+
decorative: {
|
|
15
|
+
type: Boolean,
|
|
16
|
+
default: true
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
setup(props, { attrs }) {
|
|
20
|
+
return () => h("svg", {
|
|
21
|
+
...attrs,
|
|
22
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
+
viewBox: "0 0 16 16",
|
|
24
|
+
width: props.size,
|
|
25
|
+
height: props.size,
|
|
26
|
+
fill: "currentColor",
|
|
27
|
+
"aria-hidden": props.decorative && !props.title ? "true" : undefined,
|
|
28
|
+
"aria-label": props.title || undefined,
|
|
29
|
+
role: props.title ? "img" : undefined,
|
|
30
|
+
innerHTML: "<path fill=\"currentColor\" d=\"M8 15c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7M4 7c-.6 0-1 .4-1 1s.4 1 1 1h8c.6 0 1-.4 1-1s-.4-1-1-1z\"/>"
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
export default Blocker;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export declare const Critical: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
size: {
|
|
3
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
title: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
decorative: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
size: {
|
|
18
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
title: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
decorative: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
}>> & Readonly<{}>, {
|
|
30
|
+
size: string | number;
|
|
31
|
+
title: string;
|
|
32
|
+
decorative: boolean;
|
|
33
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
34
|
+
export default Critical;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
export const Critical = defineComponent({
|
|
3
|
+
name: "Critical",
|
|
4
|
+
inheritAttrs: false,
|
|
5
|
+
props: {
|
|
6
|
+
size: {
|
|
7
|
+
type: [String, Number],
|
|
8
|
+
default: "1em"
|
|
9
|
+
},
|
|
10
|
+
title: {
|
|
11
|
+
type: String,
|
|
12
|
+
default: ""
|
|
13
|
+
},
|
|
14
|
+
decorative: {
|
|
15
|
+
type: Boolean,
|
|
16
|
+
default: true
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
setup(props, { attrs }) {
|
|
20
|
+
return () => h("svg", {
|
|
21
|
+
...attrs,
|
|
22
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
+
viewBox: "0 0 16 16",
|
|
24
|
+
width: props.size,
|
|
25
|
+
height: props.size,
|
|
26
|
+
fill: "currentColor",
|
|
27
|
+
"aria-hidden": props.decorative && !props.title ? "true" : undefined,
|
|
28
|
+
"aria-label": props.title || undefined,
|
|
29
|
+
role: props.title ? "img" : undefined,
|
|
30
|
+
innerHTML: "<linearGradient id=\"a\" x1=\"-46.25\" x2=\"-46.25\" y1=\"65.111\" y2=\"64.111\" gradientTransform=\"matrix(12 0 0 -13.1121 563 854.741)\" gradientUnits=\"userSpaceOnUse\"><stop offset=\"0\" stop-color=\"#ff5630\"/><stop offset=\"1\" stop-color=\"#ff8f73\"/></linearGradient><path fill=\"url(#a)\" d=\"m2.5 4 5-2.9c.3-.2.7-.2 1 0l5 2.9c.3.2.5.5.5.9v8.2c0 .6-.4 1-1 1-.2 0-.4 0-.5-.1L8 11.4 3.5 14c-.5.3-1.1.1-1.4-.4-.1-.1-.1-.3-.1-.5V4.9c0-.4.2-.7.5-.9\"/>"
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
export default Critical;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export declare const High: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
size: {
|
|
3
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
title: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
decorative: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
size: {
|
|
18
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
title: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
decorative: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
}>> & Readonly<{}>, {
|
|
30
|
+
size: string | number;
|
|
31
|
+
title: string;
|
|
32
|
+
decorative: boolean;
|
|
33
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
34
|
+
export default High;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
export const High = defineComponent({
|
|
3
|
+
name: "High",
|
|
4
|
+
inheritAttrs: false,
|
|
5
|
+
props: {
|
|
6
|
+
size: {
|
|
7
|
+
type: [String, Number],
|
|
8
|
+
default: "1em"
|
|
9
|
+
},
|
|
10
|
+
title: {
|
|
11
|
+
type: String,
|
|
12
|
+
default: ""
|
|
13
|
+
},
|
|
14
|
+
decorative: {
|
|
15
|
+
type: Boolean,
|
|
16
|
+
default: true
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
setup(props, { attrs }) {
|
|
20
|
+
return () => h("svg", {
|
|
21
|
+
...attrs,
|
|
22
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
+
viewBox: "0 0 16 16",
|
|
24
|
+
width: props.size,
|
|
25
|
+
height: props.size,
|
|
26
|
+
fill: "currentColor",
|
|
27
|
+
"aria-hidden": props.decorative && !props.title ? "true" : undefined,
|
|
28
|
+
"aria-label": props.title || undefined,
|
|
29
|
+
role: props.title ? "img" : undefined,
|
|
30
|
+
innerHTML: "<path fill=\"currentColor\" d=\"M3.5 9.9c-.5.3-1.1.1-1.4-.3s-.1-1.1.4-1.4l5-3c.3-.2.7-.2 1 0l5 3c.5.3.6.9.3 1.4s-.9.6-1.4.3L8 7.2z\"/>"
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
export default High;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export declare const Highest: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
size: {
|
|
3
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
title: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
decorative: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
size: {
|
|
18
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
title: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
decorative: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
}>> & Readonly<{}>, {
|
|
30
|
+
size: string | number;
|
|
31
|
+
title: string;
|
|
32
|
+
decorative: boolean;
|
|
33
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
34
|
+
export default Highest;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
export const Highest = defineComponent({
|
|
3
|
+
name: "Highest",
|
|
4
|
+
inheritAttrs: false,
|
|
5
|
+
props: {
|
|
6
|
+
size: {
|
|
7
|
+
type: [String, Number],
|
|
8
|
+
default: "1em"
|
|
9
|
+
},
|
|
10
|
+
title: {
|
|
11
|
+
type: String,
|
|
12
|
+
default: ""
|
|
13
|
+
},
|
|
14
|
+
decorative: {
|
|
15
|
+
type: Boolean,
|
|
16
|
+
default: true
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
setup(props, { attrs }) {
|
|
20
|
+
return () => h("svg", {
|
|
21
|
+
...attrs,
|
|
22
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
+
viewBox: "0 0 16 16",
|
|
24
|
+
width: props.size,
|
|
25
|
+
height: props.size,
|
|
26
|
+
fill: "currentColor",
|
|
27
|
+
"aria-hidden": props.decorative && !props.title ? "true" : undefined,
|
|
28
|
+
"aria-label": props.title || undefined,
|
|
29
|
+
role: props.title ? "img" : undefined,
|
|
30
|
+
innerHTML: "<path fill=\"currentColor\" d=\"M3.479 7.9c-.5.3-1.1.1-1.4-.4s-.1-1 .4-1.3l5-3c.3-.2.7-.2 1 0l5 3c.5.3.6.9.3 1.4-.2.4-.8.6-1.3.3l-4.5-2.7z\"/><path fill=\"currentColor\" d=\"M3.479 12.2c-.5.3-1.1.2-1.4-.3s-.1-1.1.4-1.4l5-3c.3-.2.7-.2 1 0l5 3c.5.3.6.9.3 1.4s-.9.6-1.4.3l-4.4-2.7z\"/>"
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
export default Highest;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export declare const Low: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
size: {
|
|
3
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
title: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
decorative: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
size: {
|
|
18
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
title: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
decorative: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
}>> & Readonly<{}>, {
|
|
30
|
+
size: string | number;
|
|
31
|
+
title: string;
|
|
32
|
+
decorative: boolean;
|
|
33
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
34
|
+
export default Low;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
export const Low = defineComponent({
|
|
3
|
+
name: "Low",
|
|
4
|
+
inheritAttrs: false,
|
|
5
|
+
props: {
|
|
6
|
+
size: {
|
|
7
|
+
type: [String, Number],
|
|
8
|
+
default: "1em"
|
|
9
|
+
},
|
|
10
|
+
title: {
|
|
11
|
+
type: String,
|
|
12
|
+
default: ""
|
|
13
|
+
},
|
|
14
|
+
decorative: {
|
|
15
|
+
type: Boolean,
|
|
16
|
+
default: true
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
setup(props, { attrs }) {
|
|
20
|
+
return () => h("svg", {
|
|
21
|
+
...attrs,
|
|
22
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
+
viewBox: "0 0 16 16",
|
|
24
|
+
width: props.size,
|
|
25
|
+
height: props.size,
|
|
26
|
+
fill: "currentColor",
|
|
27
|
+
"aria-hidden": props.decorative && !props.title ? "true" : undefined,
|
|
28
|
+
"aria-label": props.title || undefined,
|
|
29
|
+
role: props.title ? "img" : undefined,
|
|
30
|
+
innerHTML: "<path fill=\"currentColor\" d=\"M12.5 6.1c.5-.3 1.1-.1 1.4.4s.1 1.1-.3 1.3l-5 3c-.3.2-.7.2-1 0l-5-3c-.6-.2-.7-.9-.4-1.3.2-.5.9-.7 1.3-.4L8 8.8z\"/>"
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
export default Low;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export declare const Lowest: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
size: {
|
|
3
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
title: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
decorative: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
size: {
|
|
18
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
title: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
decorative: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
}>> & Readonly<{}>, {
|
|
30
|
+
size: string | number;
|
|
31
|
+
title: string;
|
|
32
|
+
decorative: boolean;
|
|
33
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
34
|
+
export default Lowest;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
export const Lowest = defineComponent({
|
|
3
|
+
name: "Lowest",
|
|
4
|
+
inheritAttrs: false,
|
|
5
|
+
props: {
|
|
6
|
+
size: {
|
|
7
|
+
type: [String, Number],
|
|
8
|
+
default: "1em"
|
|
9
|
+
},
|
|
10
|
+
title: {
|
|
11
|
+
type: String,
|
|
12
|
+
default: ""
|
|
13
|
+
},
|
|
14
|
+
decorative: {
|
|
15
|
+
type: Boolean,
|
|
16
|
+
default: true
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
setup(props, { attrs }) {
|
|
20
|
+
return () => h("svg", {
|
|
21
|
+
...attrs,
|
|
22
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
+
viewBox: "0 0 16 16",
|
|
24
|
+
width: props.size,
|
|
25
|
+
height: props.size,
|
|
26
|
+
fill: "currentColor",
|
|
27
|
+
"aria-hidden": props.decorative && !props.title ? "true" : undefined,
|
|
28
|
+
"aria-label": props.title || undefined,
|
|
29
|
+
role: props.title ? "img" : undefined,
|
|
30
|
+
innerHTML: "<path fill=\"currentColor\" d=\"M12.505 8.145c.5-.3 1.1-.1 1.4.4s.1 1-.4 1.3l-5 3c-.3.2-.7.2-1 0l-5-3c-.5-.3-.6-.9-.3-1.4.2-.4.8-.6 1.3-.3l4.5 2.7z\"/><path fill=\"currentColor\" d=\"M12.505 3.845c.5-.3 1.1-.2 1.4.3s.1 1.1-.4 1.4l-5 3c-.3.2-.7.2-1 0l-5-3c-.5-.3-.6-.9-.3-1.4s.9-.6 1.4-.3l4.4 2.7z\"/>"
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
export default Lowest;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export declare const Major: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
size: {
|
|
3
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
title: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
decorative: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
size: {
|
|
18
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
title: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
decorative: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
}>> & Readonly<{}>, {
|
|
30
|
+
size: string | number;
|
|
31
|
+
title: string;
|
|
32
|
+
decorative: boolean;
|
|
33
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
34
|
+
export default Major;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
export const Major = defineComponent({
|
|
3
|
+
name: "Major",
|
|
4
|
+
inheritAttrs: false,
|
|
5
|
+
props: {
|
|
6
|
+
size: {
|
|
7
|
+
type: [String, Number],
|
|
8
|
+
default: "1em"
|
|
9
|
+
},
|
|
10
|
+
title: {
|
|
11
|
+
type: String,
|
|
12
|
+
default: ""
|
|
13
|
+
},
|
|
14
|
+
decorative: {
|
|
15
|
+
type: Boolean,
|
|
16
|
+
default: true
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
setup(props, { attrs }) {
|
|
20
|
+
return () => h("svg", {
|
|
21
|
+
...attrs,
|
|
22
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
+
viewBox: "0 0 16 16",
|
|
24
|
+
width: props.size,
|
|
25
|
+
height: props.size,
|
|
26
|
+
fill: "currentColor",
|
|
27
|
+
"aria-hidden": props.decorative && !props.title ? "true" : undefined,
|
|
28
|
+
"aria-label": props.title || undefined,
|
|
29
|
+
role: props.title ? "img" : undefined,
|
|
30
|
+
innerHTML: "<path fill=\"currentColor\" d=\"m7.984 3.2-4.5 2.7c-.5.3-1.1.1-1.3-.4s-.2-1.1.3-1.3l5-3c.3-.2.7-.2 1 0l5 3c.5.3.6.9.3 1.4s-.9.6-1.4.3z\"/><path fill=\"currentColor\" d=\"M3.484 10.2c-.5.3-1.1.1-1.3-.3s-.2-1.1.3-1.4l5-3c.3-.2.7-.2 1 0l5 3c.5.3.6.9.3 1.4s-.9.6-1.4.3l-4.4-2.7z\"/><path fill=\"currentColor\" d=\"M3.484 14.5c-.5.3-1.1.2-1.3-.3s-.2-1.1.3-1.4l5-3c.3-.2.7-.2 1 0l5 3c.5.3.6.9.3 1.4s-.9.6-1.4.3l-4.4-2.7z\"/>"
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
export default Major;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export declare const Medium: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
size: {
|
|
3
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
title: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
decorative: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
size: {
|
|
18
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
title: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
decorative: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
}>> & Readonly<{}>, {
|
|
30
|
+
size: string | number;
|
|
31
|
+
title: string;
|
|
32
|
+
decorative: boolean;
|
|
33
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
34
|
+
export default Medium;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
export const Medium = defineComponent({
|
|
3
|
+
name: "Medium",
|
|
4
|
+
inheritAttrs: false,
|
|
5
|
+
props: {
|
|
6
|
+
size: {
|
|
7
|
+
type: [String, Number],
|
|
8
|
+
default: "1em"
|
|
9
|
+
},
|
|
10
|
+
title: {
|
|
11
|
+
type: String,
|
|
12
|
+
default: ""
|
|
13
|
+
},
|
|
14
|
+
decorative: {
|
|
15
|
+
type: Boolean,
|
|
16
|
+
default: true
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
setup(props, { attrs }) {
|
|
20
|
+
return () => h("svg", {
|
|
21
|
+
...attrs,
|
|
22
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
+
viewBox: "0 0 16 16",
|
|
24
|
+
width: props.size,
|
|
25
|
+
height: props.size,
|
|
26
|
+
fill: "currentColor",
|
|
27
|
+
"aria-hidden": props.decorative && !props.title ? "true" : undefined,
|
|
28
|
+
"aria-label": props.title || undefined,
|
|
29
|
+
role: props.title ? "img" : undefined,
|
|
30
|
+
innerHTML: "<title>icon/16px/medium-priority</title><path id=\"icon_x2F_16px_x2F_medium-priority-\" d=\"M3 4h10c.6 0 1 .4 1 1s-.4 1-1 1H3c-.6 0-1-.4-1-1s.4-1 1-1m0 6h10c.6 0 1 .4 1 1s-.4 1-1 1H3c-.6 0-1-.4-1-1s.4-1 1-1\" style=\"fill:currentColor\"/>"
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
export default Medium;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export declare const Minor: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
size: {
|
|
3
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
title: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
decorative: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
size: {
|
|
18
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
title: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
decorative: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
}>> & Readonly<{}>, {
|
|
30
|
+
size: string | number;
|
|
31
|
+
title: string;
|
|
32
|
+
decorative: boolean;
|
|
33
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
34
|
+
export default Minor;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
export const Minor = defineComponent({
|
|
3
|
+
name: "Minor",
|
|
4
|
+
inheritAttrs: false,
|
|
5
|
+
props: {
|
|
6
|
+
size: {
|
|
7
|
+
type: [String, Number],
|
|
8
|
+
default: "1em"
|
|
9
|
+
},
|
|
10
|
+
title: {
|
|
11
|
+
type: String,
|
|
12
|
+
default: ""
|
|
13
|
+
},
|
|
14
|
+
decorative: {
|
|
15
|
+
type: Boolean,
|
|
16
|
+
default: true
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
setup(props, { attrs }) {
|
|
20
|
+
return () => h("svg", {
|
|
21
|
+
...attrs,
|
|
22
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
+
viewBox: "0 0 16 16",
|
|
24
|
+
width: props.size,
|
|
25
|
+
height: props.size,
|
|
26
|
+
fill: "currentColor",
|
|
27
|
+
"aria-hidden": props.decorative && !props.title ? "true" : undefined,
|
|
28
|
+
"aria-label": props.title || undefined,
|
|
29
|
+
role: props.title ? "img" : undefined,
|
|
30
|
+
innerHTML: "<path fill=\"currentColor\" d=\"m8.045 12.806 4.5-2.7c.5-.3 1.1-.1 1.3.4s.2 1.1-.3 1.3l-5 3c-.3.2-.7.2-1 0l-5-3c-.5-.3-.6-.9-.3-1.4s.9-.6 1.4-.3z\"/><path fill=\"currentColor\" d=\"M12.545 5.806c.5-.3 1.1-.1 1.3.3s.2 1.1-.3 1.4l-5 3c-.3.2-.7.2-1 0l-5-3c-.5-.3-.6-.9-.3-1.4s.9-.6 1.4-.3l4.4 2.7z\"/><path fill=\"currentColor\" d=\"M12.545 1.506c.5-.3 1.1-.2 1.3.3s.2 1.1-.3 1.4l-5 3c-.3.2-.7.2-1 0l-5-3c-.5-.3-.6-.9-.3-1.4s.9-.6 1.4-.3l4.4 2.7z\"/>"
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
export default Minor;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export declare const Trivial: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
size: {
|
|
3
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
title: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
decorative: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
size: {
|
|
18
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
title: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
decorative: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
}>> & Readonly<{}>, {
|
|
30
|
+
size: string | number;
|
|
31
|
+
title: string;
|
|
32
|
+
decorative: boolean;
|
|
33
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
34
|
+
export default Trivial;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
export const Trivial = defineComponent({
|
|
3
|
+
name: "Trivial",
|
|
4
|
+
inheritAttrs: false,
|
|
5
|
+
props: {
|
|
6
|
+
size: {
|
|
7
|
+
type: [String, Number],
|
|
8
|
+
default: "1em"
|
|
9
|
+
},
|
|
10
|
+
title: {
|
|
11
|
+
type: String,
|
|
12
|
+
default: ""
|
|
13
|
+
},
|
|
14
|
+
decorative: {
|
|
15
|
+
type: Boolean,
|
|
16
|
+
default: true
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
setup(props, { attrs }) {
|
|
20
|
+
return () => h("svg", {
|
|
21
|
+
...attrs,
|
|
22
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
+
viewBox: "0 0 16 16",
|
|
24
|
+
width: props.size,
|
|
25
|
+
height: props.size,
|
|
26
|
+
fill: "currentColor",
|
|
27
|
+
"aria-hidden": props.decorative && !props.title ? "true" : undefined,
|
|
28
|
+
"aria-label": props.title || undefined,
|
|
29
|
+
role: props.title ? "img" : undefined,
|
|
30
|
+
innerHTML: "<circle cx=\"8\" cy=\"8\" r=\"5\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\"/>"
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
export default Trivial;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export declare const UserCheckColored: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
size: {
|
|
3
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
title: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
decorative: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
size: {
|
|
18
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
title: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
decorative: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
}>> & Readonly<{}>, {
|
|
30
|
+
size: string | number;
|
|
31
|
+
title: string;
|
|
32
|
+
decorative: boolean;
|
|
33
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
34
|
+
export default UserCheckColored;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
export const UserCheckColored = defineComponent({
|
|
3
|
+
name: "UserCheckColored",
|
|
4
|
+
inheritAttrs: false,
|
|
5
|
+
props: {
|
|
6
|
+
size: {
|
|
7
|
+
type: [String, Number],
|
|
8
|
+
default: "1em"
|
|
9
|
+
},
|
|
10
|
+
title: {
|
|
11
|
+
type: String,
|
|
12
|
+
default: ""
|
|
13
|
+
},
|
|
14
|
+
decorative: {
|
|
15
|
+
type: Boolean,
|
|
16
|
+
default: true
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
setup(props, { attrs }) {
|
|
20
|
+
return () => h("svg", {
|
|
21
|
+
...attrs,
|
|
22
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
+
viewBox: "0 0 640 512",
|
|
24
|
+
width: props.size,
|
|
25
|
+
height: props.size,
|
|
26
|
+
fill: "currentColor",
|
|
27
|
+
"aria-hidden": props.decorative && !props.title ? "true" : undefined,
|
|
28
|
+
"aria-label": props.title || undefined,
|
|
29
|
+
role: props.title ? "img" : undefined,
|
|
30
|
+
innerHTML: "<path fill=\"currentColor\" d=\"M286 304c98.5 0 178.3 79.8 178.3 178.3 0 16.4-13.3 29.7-29.7 29.7H78c-16.4 0-29.7-13.3-29.7-29.7 0-98.5 79.8-178.3 178.3-178.3zm-29.7-56a120 120 0 1 1 0-240 120 120 0 1 1 0 240\"/><path fill=\"currentColor\" d=\"M585.7 105.9c7.8-10.7 22.8-13.1 33.5-5.3s13.1 22.8 5.3 33.5L522.1 274.9c-4.2 5.7-10.7 9.4-17.7 9.8s-14-2.2-18.9-7.3l-46.4-48c-9.2-9.5-9-24.7.6-33.9 9.5-9.2 24.7-8.9 33.9.6l26.5 27.4 85.6-117.7z\"/>"
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
export default UserCheckColored;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export declare const UserQuestionColored: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
size: {
|
|
3
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
title: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
decorative: {
|
|
11
|
+
type: BooleanConstructor;
|
|
12
|
+
default: boolean;
|
|
13
|
+
};
|
|
14
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
size: {
|
|
18
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
title: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
decorative: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
}>> & Readonly<{}>, {
|
|
30
|
+
size: string | number;
|
|
31
|
+
title: string;
|
|
32
|
+
decorative: boolean;
|
|
33
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
34
|
+
export default UserQuestionColored;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
export const UserQuestionColored = defineComponent({
|
|
3
|
+
name: "UserQuestionColored",
|
|
4
|
+
inheritAttrs: false,
|
|
5
|
+
props: {
|
|
6
|
+
size: {
|
|
7
|
+
type: [String, Number],
|
|
8
|
+
default: "1em"
|
|
9
|
+
},
|
|
10
|
+
title: {
|
|
11
|
+
type: String,
|
|
12
|
+
default: ""
|
|
13
|
+
},
|
|
14
|
+
decorative: {
|
|
15
|
+
type: Boolean,
|
|
16
|
+
default: true
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
setup(props, { attrs }) {
|
|
20
|
+
return () => h("svg", {
|
|
21
|
+
...attrs,
|
|
22
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
23
|
+
viewBox: "0 0 576 512",
|
|
24
|
+
width: props.size,
|
|
25
|
+
height: props.size,
|
|
26
|
+
fill: "currentColor",
|
|
27
|
+
"aria-hidden": props.decorative && !props.title ? "true" : undefined,
|
|
28
|
+
"aria-label": props.title || undefined,
|
|
29
|
+
role: props.title ? "img" : undefined,
|
|
30
|
+
innerHTML: "<path fill=\"currentColor\" d=\"M104.2 128a120 120 0 1 1 240 0 120 120 0 1 1-240 0m-88 354.3C16.2 383.8 96 304 194.5 304h59.4c98.5 0 178.3 79.8 178.3 178.3 0 16.4-13.3 29.7-29.7 29.7H45.9c-16.4 0-29.7-13.3-29.7-29.7\"/><path fill=\"currentColor\" d=\"M496.2 120c-16.1 0-29.2 13.1-29.2 29.2 0 13.3-10.7 24-24 24s-24-10.7-24-24c0-42.6 34.6-77.2 77.2-77.2s77.2 34.6 77.2 77.2c0 45.5-34.5 64.7-53.7 71.8-2.3 10.8-11.9 19-23.5 19-13.3 0-24-10.7-24-24 0-20.2 14.6-34.6 29.5-39.5 6-2 12.3-5.1 16.8-9.5 3.9-3.8 6.9-9 6.9-17.7 0-16.1-13.1-29.2-29.2-29.2zm-28 168a28 28 0 1 1 56 0 28 28 0 1 1-56 0\"/>"
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
export default UserQuestionColored;
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -322,6 +322,7 @@ export { BlindsRaised } from "./BlindsRaised.js";
|
|
|
322
322
|
export { Block } from "./Block.js";
|
|
323
323
|
export { BlockBrick } from "./BlockBrick.js";
|
|
324
324
|
export { BlockBrickFire } from "./BlockBrickFire.js";
|
|
325
|
+
export { Blocker } from "./Blocker.js";
|
|
325
326
|
export { BlockQuestion } from "./BlockQuestion.js";
|
|
326
327
|
export { BlockQuote } from "./BlockQuote.js";
|
|
327
328
|
export { Blog } from "./Blog.js";
|
|
@@ -1077,6 +1078,7 @@ export { CreditCard } from "./CreditCard.js";
|
|
|
1077
1078
|
export { CreditCardBlank } from "./CreditCardBlank.js";
|
|
1078
1079
|
export { CreditCardFront } from "./CreditCardFront.js";
|
|
1079
1080
|
export { CricketBatBall } from "./CricketBatBall.js";
|
|
1081
|
+
export { Critical } from "./Critical.js";
|
|
1080
1082
|
export { Croissant } from "./Croissant.js";
|
|
1081
1083
|
export { Crop } from "./Crop.js";
|
|
1082
1084
|
export { CropSimple } from "./CropSimple.js";
|
|
@@ -1809,7 +1811,9 @@ export { HexagonNodesBolt } from "./HexagonNodesBolt.js";
|
|
|
1809
1811
|
export { HexagonPlus } from "./HexagonPlus.js";
|
|
1810
1812
|
export { HexagonVerticalNft } from "./HexagonVerticalNft.js";
|
|
1811
1813
|
export { HexagonXmark } from "./HexagonXmark.js";
|
|
1814
|
+
export { High } from "./High.js";
|
|
1812
1815
|
export { HighDefinition } from "./HighDefinition.js";
|
|
1816
|
+
export { Highest } from "./Highest.js";
|
|
1813
1817
|
export { Highlighter } from "./Highlighter.js";
|
|
1814
1818
|
export { HighlighterLine } from "./HighlighterLine.js";
|
|
1815
1819
|
export { HillAvalanche } from "./HillAvalanche.js";
|
|
@@ -2094,6 +2098,8 @@ export { LockOpen } from "./LockOpen.js";
|
|
|
2094
2098
|
export { Locust } from "./Locust.js";
|
|
2095
2099
|
export { Lollipop } from "./Lollipop.js";
|
|
2096
2100
|
export { Loveseat } from "./Loveseat.js";
|
|
2101
|
+
export { Low } from "./Low.js";
|
|
2102
|
+
export { Lowest } from "./Lowest.js";
|
|
2097
2103
|
export { LuchadorMask } from "./LuchadorMask.js";
|
|
2098
2104
|
export { Lungs } from "./Lungs.js";
|
|
2099
2105
|
export { LungsVirus } from "./LungsVirus.js";
|
|
@@ -2116,6 +2122,7 @@ export { Mailbox } from "./Mailbox.js";
|
|
|
2116
2122
|
export { MailboxFlagUp } from "./MailboxFlagUp.js";
|
|
2117
2123
|
export { MailboxOpenEmpty } from "./MailboxOpenEmpty.js";
|
|
2118
2124
|
export { MailboxOpenLetter } from "./MailboxOpenLetter.js";
|
|
2125
|
+
export { Major } from "./Major.js";
|
|
2119
2126
|
export { MalaysianRinggitSign } from "./MalaysianRinggitSign.js";
|
|
2120
2127
|
export { ManatSign } from "./ManatSign.js";
|
|
2121
2128
|
export { Mandolin } from "./Mandolin.js";
|
|
@@ -2145,6 +2152,7 @@ export { MattressPillow } from "./MattressPillow.js";
|
|
|
2145
2152
|
export { Maximize } from "./Maximize.js";
|
|
2146
2153
|
export { Meat } from "./Meat.js";
|
|
2147
2154
|
export { Medal } from "./Medal.js";
|
|
2155
|
+
export { Medium } from "./Medium.js";
|
|
2148
2156
|
export { Megaphone } from "./Megaphone.js";
|
|
2149
2157
|
export { Melon } from "./Melon.js";
|
|
2150
2158
|
export { MelonSlice } from "./MelonSlice.js";
|
|
@@ -2209,6 +2217,7 @@ export { Microwave } from "./Microwave.js";
|
|
|
2209
2217
|
export { Midi } from "./Midi.js";
|
|
2210
2218
|
export { MillSign } from "./MillSign.js";
|
|
2211
2219
|
export { Minimize } from "./Minimize.js";
|
|
2220
|
+
export { Minor } from "./Minor.js";
|
|
2212
2221
|
export { Minus } from "./Minus.js";
|
|
2213
2222
|
export { Mistletoe } from "./Mistletoe.js";
|
|
2214
2223
|
export { Mitten } from "./Mitten.js";
|
|
@@ -3384,6 +3393,7 @@ export { TripleChevronsDown } from "./TripleChevronsDown.js";
|
|
|
3384
3393
|
export { TripleChevronsLeft } from "./TripleChevronsLeft.js";
|
|
3385
3394
|
export { TripleChevronsRight } from "./TripleChevronsRight.js";
|
|
3386
3395
|
export { TripleChevronsUp } from "./TripleChevronsUp.js";
|
|
3396
|
+
export { Trivial } from "./Trivial.js";
|
|
3387
3397
|
export { Trombone } from "./Trombone.js";
|
|
3388
3398
|
export { Trophy } from "./Trophy.js";
|
|
3389
3399
|
export { TrophyStar } from "./TrophyStar.js";
|
|
@@ -3473,6 +3483,7 @@ export { UserBeard } from "./UserBeard.js";
|
|
|
3473
3483
|
export { UserBeardBolt } from "./UserBeardBolt.js";
|
|
3474
3484
|
export { UserBountyHunter } from "./UserBountyHunter.js";
|
|
3475
3485
|
export { UserCheck } from "./UserCheck.js";
|
|
3486
|
+
export { UserCheckColored } from "./UserCheckColored.js";
|
|
3476
3487
|
export { UserChef } from "./UserChef.js";
|
|
3477
3488
|
export { UserChefHairLong } from "./UserChefHairLong.js";
|
|
3478
3489
|
export { UserCircleMinus } from "./UserCircleMinus.js";
|
|
@@ -3523,6 +3534,7 @@ export { UserPoliceHairLong } from "./UserPoliceHairLong.js";
|
|
|
3523
3534
|
export { UserPoliceTie } from "./UserPoliceTie.js";
|
|
3524
3535
|
export { UserPoliceTieHairLong } from "./UserPoliceTieHairLong.js";
|
|
3525
3536
|
export { UserQuestion } from "./UserQuestion.js";
|
|
3537
|
+
export { UserQuestionColored } from "./UserQuestionColored.js";
|
|
3526
3538
|
export { UserRobot } from "./UserRobot.js";
|
|
3527
3539
|
export { UserRobotXmarks } from "./UserRobotXmarks.js";
|
|
3528
3540
|
export { Users } from "./Users.js";
|
package/dist/icons/index.js
CHANGED
|
@@ -322,6 +322,7 @@ export { BlindsRaised } from "./BlindsRaised.js";
|
|
|
322
322
|
export { Block } from "./Block.js";
|
|
323
323
|
export { BlockBrick } from "./BlockBrick.js";
|
|
324
324
|
export { BlockBrickFire } from "./BlockBrickFire.js";
|
|
325
|
+
export { Blocker } from "./Blocker.js";
|
|
325
326
|
export { BlockQuestion } from "./BlockQuestion.js";
|
|
326
327
|
export { BlockQuote } from "./BlockQuote.js";
|
|
327
328
|
export { Blog } from "./Blog.js";
|
|
@@ -1077,6 +1078,7 @@ export { CreditCard } from "./CreditCard.js";
|
|
|
1077
1078
|
export { CreditCardBlank } from "./CreditCardBlank.js";
|
|
1078
1079
|
export { CreditCardFront } from "./CreditCardFront.js";
|
|
1079
1080
|
export { CricketBatBall } from "./CricketBatBall.js";
|
|
1081
|
+
export { Critical } from "./Critical.js";
|
|
1080
1082
|
export { Croissant } from "./Croissant.js";
|
|
1081
1083
|
export { Crop } from "./Crop.js";
|
|
1082
1084
|
export { CropSimple } from "./CropSimple.js";
|
|
@@ -1809,7 +1811,9 @@ export { HexagonNodesBolt } from "./HexagonNodesBolt.js";
|
|
|
1809
1811
|
export { HexagonPlus } from "./HexagonPlus.js";
|
|
1810
1812
|
export { HexagonVerticalNft } from "./HexagonVerticalNft.js";
|
|
1811
1813
|
export { HexagonXmark } from "./HexagonXmark.js";
|
|
1814
|
+
export { High } from "./High.js";
|
|
1812
1815
|
export { HighDefinition } from "./HighDefinition.js";
|
|
1816
|
+
export { Highest } from "./Highest.js";
|
|
1813
1817
|
export { Highlighter } from "./Highlighter.js";
|
|
1814
1818
|
export { HighlighterLine } from "./HighlighterLine.js";
|
|
1815
1819
|
export { HillAvalanche } from "./HillAvalanche.js";
|
|
@@ -2094,6 +2098,8 @@ export { LockOpen } from "./LockOpen.js";
|
|
|
2094
2098
|
export { Locust } from "./Locust.js";
|
|
2095
2099
|
export { Lollipop } from "./Lollipop.js";
|
|
2096
2100
|
export { Loveseat } from "./Loveseat.js";
|
|
2101
|
+
export { Low } from "./Low.js";
|
|
2102
|
+
export { Lowest } from "./Lowest.js";
|
|
2097
2103
|
export { LuchadorMask } from "./LuchadorMask.js";
|
|
2098
2104
|
export { Lungs } from "./Lungs.js";
|
|
2099
2105
|
export { LungsVirus } from "./LungsVirus.js";
|
|
@@ -2116,6 +2122,7 @@ export { Mailbox } from "./Mailbox.js";
|
|
|
2116
2122
|
export { MailboxFlagUp } from "./MailboxFlagUp.js";
|
|
2117
2123
|
export { MailboxOpenEmpty } from "./MailboxOpenEmpty.js";
|
|
2118
2124
|
export { MailboxOpenLetter } from "./MailboxOpenLetter.js";
|
|
2125
|
+
export { Major } from "./Major.js";
|
|
2119
2126
|
export { MalaysianRinggitSign } from "./MalaysianRinggitSign.js";
|
|
2120
2127
|
export { ManatSign } from "./ManatSign.js";
|
|
2121
2128
|
export { Mandolin } from "./Mandolin.js";
|
|
@@ -2145,6 +2152,7 @@ export { MattressPillow } from "./MattressPillow.js";
|
|
|
2145
2152
|
export { Maximize } from "./Maximize.js";
|
|
2146
2153
|
export { Meat } from "./Meat.js";
|
|
2147
2154
|
export { Medal } from "./Medal.js";
|
|
2155
|
+
export { Medium } from "./Medium.js";
|
|
2148
2156
|
export { Megaphone } from "./Megaphone.js";
|
|
2149
2157
|
export { Melon } from "./Melon.js";
|
|
2150
2158
|
export { MelonSlice } from "./MelonSlice.js";
|
|
@@ -2209,6 +2217,7 @@ export { Microwave } from "./Microwave.js";
|
|
|
2209
2217
|
export { Midi } from "./Midi.js";
|
|
2210
2218
|
export { MillSign } from "./MillSign.js";
|
|
2211
2219
|
export { Minimize } from "./Minimize.js";
|
|
2220
|
+
export { Minor } from "./Minor.js";
|
|
2212
2221
|
export { Minus } from "./Minus.js";
|
|
2213
2222
|
export { Mistletoe } from "./Mistletoe.js";
|
|
2214
2223
|
export { Mitten } from "./Mitten.js";
|
|
@@ -3384,6 +3393,7 @@ export { TripleChevronsDown } from "./TripleChevronsDown.js";
|
|
|
3384
3393
|
export { TripleChevronsLeft } from "./TripleChevronsLeft.js";
|
|
3385
3394
|
export { TripleChevronsRight } from "./TripleChevronsRight.js";
|
|
3386
3395
|
export { TripleChevronsUp } from "./TripleChevronsUp.js";
|
|
3396
|
+
export { Trivial } from "./Trivial.js";
|
|
3387
3397
|
export { Trombone } from "./Trombone.js";
|
|
3388
3398
|
export { Trophy } from "./Trophy.js";
|
|
3389
3399
|
export { TrophyStar } from "./TrophyStar.js";
|
|
@@ -3473,6 +3483,7 @@ export { UserBeard } from "./UserBeard.js";
|
|
|
3473
3483
|
export { UserBeardBolt } from "./UserBeardBolt.js";
|
|
3474
3484
|
export { UserBountyHunter } from "./UserBountyHunter.js";
|
|
3475
3485
|
export { UserCheck } from "./UserCheck.js";
|
|
3486
|
+
export { UserCheckColored } from "./UserCheckColored.js";
|
|
3476
3487
|
export { UserChef } from "./UserChef.js";
|
|
3477
3488
|
export { UserChefHairLong } from "./UserChefHairLong.js";
|
|
3478
3489
|
export { UserCircleMinus } from "./UserCircleMinus.js";
|
|
@@ -3523,6 +3534,7 @@ export { UserPoliceHairLong } from "./UserPoliceHairLong.js";
|
|
|
3523
3534
|
export { UserPoliceTie } from "./UserPoliceTie.js";
|
|
3524
3535
|
export { UserPoliceTieHairLong } from "./UserPoliceTieHairLong.js";
|
|
3525
3536
|
export { UserQuestion } from "./UserQuestion.js";
|
|
3537
|
+
export { UserQuestionColored } from "./UserQuestionColored.js";
|
|
3526
3538
|
export { UserRobot } from "./UserRobot.js";
|
|
3527
3539
|
export { UserRobotXmarks } from "./UserRobotXmarks.js";
|
|
3528
3540
|
export { Users } from "./Users.js";
|
package/dist/index.d.ts
CHANGED
|
@@ -322,6 +322,7 @@ export { BlindsRaised } from "./icons/BlindsRaised.js";
|
|
|
322
322
|
export { Block } from "./icons/Block.js";
|
|
323
323
|
export { BlockBrick } from "./icons/BlockBrick.js";
|
|
324
324
|
export { BlockBrickFire } from "./icons/BlockBrickFire.js";
|
|
325
|
+
export { Blocker } from "./icons/Blocker.js";
|
|
325
326
|
export { BlockQuestion } from "./icons/BlockQuestion.js";
|
|
326
327
|
export { BlockQuote } from "./icons/BlockQuote.js";
|
|
327
328
|
export { Blog } from "./icons/Blog.js";
|
|
@@ -1077,6 +1078,7 @@ export { CreditCard } from "./icons/CreditCard.js";
|
|
|
1077
1078
|
export { CreditCardBlank } from "./icons/CreditCardBlank.js";
|
|
1078
1079
|
export { CreditCardFront } from "./icons/CreditCardFront.js";
|
|
1079
1080
|
export { CricketBatBall } from "./icons/CricketBatBall.js";
|
|
1081
|
+
export { Critical } from "./icons/Critical.js";
|
|
1080
1082
|
export { Croissant } from "./icons/Croissant.js";
|
|
1081
1083
|
export { Crop } from "./icons/Crop.js";
|
|
1082
1084
|
export { CropSimple } from "./icons/CropSimple.js";
|
|
@@ -1809,7 +1811,9 @@ export { HexagonNodesBolt } from "./icons/HexagonNodesBolt.js";
|
|
|
1809
1811
|
export { HexagonPlus } from "./icons/HexagonPlus.js";
|
|
1810
1812
|
export { HexagonVerticalNft } from "./icons/HexagonVerticalNft.js";
|
|
1811
1813
|
export { HexagonXmark } from "./icons/HexagonXmark.js";
|
|
1814
|
+
export { High } from "./icons/High.js";
|
|
1812
1815
|
export { HighDefinition } from "./icons/HighDefinition.js";
|
|
1816
|
+
export { Highest } from "./icons/Highest.js";
|
|
1813
1817
|
export { Highlighter } from "./icons/Highlighter.js";
|
|
1814
1818
|
export { HighlighterLine } from "./icons/HighlighterLine.js";
|
|
1815
1819
|
export { HillAvalanche } from "./icons/HillAvalanche.js";
|
|
@@ -2094,6 +2098,8 @@ export { LockOpen } from "./icons/LockOpen.js";
|
|
|
2094
2098
|
export { Locust } from "./icons/Locust.js";
|
|
2095
2099
|
export { Lollipop } from "./icons/Lollipop.js";
|
|
2096
2100
|
export { Loveseat } from "./icons/Loveseat.js";
|
|
2101
|
+
export { Low } from "./icons/Low.js";
|
|
2102
|
+
export { Lowest } from "./icons/Lowest.js";
|
|
2097
2103
|
export { LuchadorMask } from "./icons/LuchadorMask.js";
|
|
2098
2104
|
export { Lungs } from "./icons/Lungs.js";
|
|
2099
2105
|
export { LungsVirus } from "./icons/LungsVirus.js";
|
|
@@ -2116,6 +2122,7 @@ export { Mailbox } from "./icons/Mailbox.js";
|
|
|
2116
2122
|
export { MailboxFlagUp } from "./icons/MailboxFlagUp.js";
|
|
2117
2123
|
export { MailboxOpenEmpty } from "./icons/MailboxOpenEmpty.js";
|
|
2118
2124
|
export { MailboxOpenLetter } from "./icons/MailboxOpenLetter.js";
|
|
2125
|
+
export { Major } from "./icons/Major.js";
|
|
2119
2126
|
export { MalaysianRinggitSign } from "./icons/MalaysianRinggitSign.js";
|
|
2120
2127
|
export { ManatSign } from "./icons/ManatSign.js";
|
|
2121
2128
|
export { Mandolin } from "./icons/Mandolin.js";
|
|
@@ -2145,6 +2152,7 @@ export { MattressPillow } from "./icons/MattressPillow.js";
|
|
|
2145
2152
|
export { Maximize } from "./icons/Maximize.js";
|
|
2146
2153
|
export { Meat } from "./icons/Meat.js";
|
|
2147
2154
|
export { Medal } from "./icons/Medal.js";
|
|
2155
|
+
export { Medium } from "./icons/Medium.js";
|
|
2148
2156
|
export { Megaphone } from "./icons/Megaphone.js";
|
|
2149
2157
|
export { Melon } from "./icons/Melon.js";
|
|
2150
2158
|
export { MelonSlice } from "./icons/MelonSlice.js";
|
|
@@ -2209,6 +2217,7 @@ export { Microwave } from "./icons/Microwave.js";
|
|
|
2209
2217
|
export { Midi } from "./icons/Midi.js";
|
|
2210
2218
|
export { MillSign } from "./icons/MillSign.js";
|
|
2211
2219
|
export { Minimize } from "./icons/Minimize.js";
|
|
2220
|
+
export { Minor } from "./icons/Minor.js";
|
|
2212
2221
|
export { Minus } from "./icons/Minus.js";
|
|
2213
2222
|
export { Mistletoe } from "./icons/Mistletoe.js";
|
|
2214
2223
|
export { Mitten } from "./icons/Mitten.js";
|
|
@@ -3384,6 +3393,7 @@ export { TripleChevronsDown } from "./icons/TripleChevronsDown.js";
|
|
|
3384
3393
|
export { TripleChevronsLeft } from "./icons/TripleChevronsLeft.js";
|
|
3385
3394
|
export { TripleChevronsRight } from "./icons/TripleChevronsRight.js";
|
|
3386
3395
|
export { TripleChevronsUp } from "./icons/TripleChevronsUp.js";
|
|
3396
|
+
export { Trivial } from "./icons/Trivial.js";
|
|
3387
3397
|
export { Trombone } from "./icons/Trombone.js";
|
|
3388
3398
|
export { Trophy } from "./icons/Trophy.js";
|
|
3389
3399
|
export { TrophyStar } from "./icons/TrophyStar.js";
|
|
@@ -3473,6 +3483,7 @@ export { UserBeard } from "./icons/UserBeard.js";
|
|
|
3473
3483
|
export { UserBeardBolt } from "./icons/UserBeardBolt.js";
|
|
3474
3484
|
export { UserBountyHunter } from "./icons/UserBountyHunter.js";
|
|
3475
3485
|
export { UserCheck } from "./icons/UserCheck.js";
|
|
3486
|
+
export { UserCheckColored } from "./icons/UserCheckColored.js";
|
|
3476
3487
|
export { UserChef } from "./icons/UserChef.js";
|
|
3477
3488
|
export { UserChefHairLong } from "./icons/UserChefHairLong.js";
|
|
3478
3489
|
export { UserCircleMinus } from "./icons/UserCircleMinus.js";
|
|
@@ -3523,6 +3534,7 @@ export { UserPoliceHairLong } from "./icons/UserPoliceHairLong.js";
|
|
|
3523
3534
|
export { UserPoliceTie } from "./icons/UserPoliceTie.js";
|
|
3524
3535
|
export { UserPoliceTieHairLong } from "./icons/UserPoliceTieHairLong.js";
|
|
3525
3536
|
export { UserQuestion } from "./icons/UserQuestion.js";
|
|
3537
|
+
export { UserQuestionColored } from "./icons/UserQuestionColored.js";
|
|
3526
3538
|
export { UserRobot } from "./icons/UserRobot.js";
|
|
3527
3539
|
export { UserRobotXmarks } from "./icons/UserRobotXmarks.js";
|
|
3528
3540
|
export { Users } from "./icons/Users.js";
|
package/dist/index.js
CHANGED
|
@@ -322,6 +322,7 @@ export { BlindsRaised } from "./icons/BlindsRaised.js";
|
|
|
322
322
|
export { Block } from "./icons/Block.js";
|
|
323
323
|
export { BlockBrick } from "./icons/BlockBrick.js";
|
|
324
324
|
export { BlockBrickFire } from "./icons/BlockBrickFire.js";
|
|
325
|
+
export { Blocker } from "./icons/Blocker.js";
|
|
325
326
|
export { BlockQuestion } from "./icons/BlockQuestion.js";
|
|
326
327
|
export { BlockQuote } from "./icons/BlockQuote.js";
|
|
327
328
|
export { Blog } from "./icons/Blog.js";
|
|
@@ -1077,6 +1078,7 @@ export { CreditCard } from "./icons/CreditCard.js";
|
|
|
1077
1078
|
export { CreditCardBlank } from "./icons/CreditCardBlank.js";
|
|
1078
1079
|
export { CreditCardFront } from "./icons/CreditCardFront.js";
|
|
1079
1080
|
export { CricketBatBall } from "./icons/CricketBatBall.js";
|
|
1081
|
+
export { Critical } from "./icons/Critical.js";
|
|
1080
1082
|
export { Croissant } from "./icons/Croissant.js";
|
|
1081
1083
|
export { Crop } from "./icons/Crop.js";
|
|
1082
1084
|
export { CropSimple } from "./icons/CropSimple.js";
|
|
@@ -1809,7 +1811,9 @@ export { HexagonNodesBolt } from "./icons/HexagonNodesBolt.js";
|
|
|
1809
1811
|
export { HexagonPlus } from "./icons/HexagonPlus.js";
|
|
1810
1812
|
export { HexagonVerticalNft } from "./icons/HexagonVerticalNft.js";
|
|
1811
1813
|
export { HexagonXmark } from "./icons/HexagonXmark.js";
|
|
1814
|
+
export { High } from "./icons/High.js";
|
|
1812
1815
|
export { HighDefinition } from "./icons/HighDefinition.js";
|
|
1816
|
+
export { Highest } from "./icons/Highest.js";
|
|
1813
1817
|
export { Highlighter } from "./icons/Highlighter.js";
|
|
1814
1818
|
export { HighlighterLine } from "./icons/HighlighterLine.js";
|
|
1815
1819
|
export { HillAvalanche } from "./icons/HillAvalanche.js";
|
|
@@ -2094,6 +2098,8 @@ export { LockOpen } from "./icons/LockOpen.js";
|
|
|
2094
2098
|
export { Locust } from "./icons/Locust.js";
|
|
2095
2099
|
export { Lollipop } from "./icons/Lollipop.js";
|
|
2096
2100
|
export { Loveseat } from "./icons/Loveseat.js";
|
|
2101
|
+
export { Low } from "./icons/Low.js";
|
|
2102
|
+
export { Lowest } from "./icons/Lowest.js";
|
|
2097
2103
|
export { LuchadorMask } from "./icons/LuchadorMask.js";
|
|
2098
2104
|
export { Lungs } from "./icons/Lungs.js";
|
|
2099
2105
|
export { LungsVirus } from "./icons/LungsVirus.js";
|
|
@@ -2116,6 +2122,7 @@ export { Mailbox } from "./icons/Mailbox.js";
|
|
|
2116
2122
|
export { MailboxFlagUp } from "./icons/MailboxFlagUp.js";
|
|
2117
2123
|
export { MailboxOpenEmpty } from "./icons/MailboxOpenEmpty.js";
|
|
2118
2124
|
export { MailboxOpenLetter } from "./icons/MailboxOpenLetter.js";
|
|
2125
|
+
export { Major } from "./icons/Major.js";
|
|
2119
2126
|
export { MalaysianRinggitSign } from "./icons/MalaysianRinggitSign.js";
|
|
2120
2127
|
export { ManatSign } from "./icons/ManatSign.js";
|
|
2121
2128
|
export { Mandolin } from "./icons/Mandolin.js";
|
|
@@ -2145,6 +2152,7 @@ export { MattressPillow } from "./icons/MattressPillow.js";
|
|
|
2145
2152
|
export { Maximize } from "./icons/Maximize.js";
|
|
2146
2153
|
export { Meat } from "./icons/Meat.js";
|
|
2147
2154
|
export { Medal } from "./icons/Medal.js";
|
|
2155
|
+
export { Medium } from "./icons/Medium.js";
|
|
2148
2156
|
export { Megaphone } from "./icons/Megaphone.js";
|
|
2149
2157
|
export { Melon } from "./icons/Melon.js";
|
|
2150
2158
|
export { MelonSlice } from "./icons/MelonSlice.js";
|
|
@@ -2209,6 +2217,7 @@ export { Microwave } from "./icons/Microwave.js";
|
|
|
2209
2217
|
export { Midi } from "./icons/Midi.js";
|
|
2210
2218
|
export { MillSign } from "./icons/MillSign.js";
|
|
2211
2219
|
export { Minimize } from "./icons/Minimize.js";
|
|
2220
|
+
export { Minor } from "./icons/Minor.js";
|
|
2212
2221
|
export { Minus } from "./icons/Minus.js";
|
|
2213
2222
|
export { Mistletoe } from "./icons/Mistletoe.js";
|
|
2214
2223
|
export { Mitten } from "./icons/Mitten.js";
|
|
@@ -3384,6 +3393,7 @@ export { TripleChevronsDown } from "./icons/TripleChevronsDown.js";
|
|
|
3384
3393
|
export { TripleChevronsLeft } from "./icons/TripleChevronsLeft.js";
|
|
3385
3394
|
export { TripleChevronsRight } from "./icons/TripleChevronsRight.js";
|
|
3386
3395
|
export { TripleChevronsUp } from "./icons/TripleChevronsUp.js";
|
|
3396
|
+
export { Trivial } from "./icons/Trivial.js";
|
|
3387
3397
|
export { Trombone } from "./icons/Trombone.js";
|
|
3388
3398
|
export { Trophy } from "./icons/Trophy.js";
|
|
3389
3399
|
export { TrophyStar } from "./icons/TrophyStar.js";
|
|
@@ -3473,6 +3483,7 @@ export { UserBeard } from "./icons/UserBeard.js";
|
|
|
3473
3483
|
export { UserBeardBolt } from "./icons/UserBeardBolt.js";
|
|
3474
3484
|
export { UserBountyHunter } from "./icons/UserBountyHunter.js";
|
|
3475
3485
|
export { UserCheck } from "./icons/UserCheck.js";
|
|
3486
|
+
export { UserCheckColored } from "./icons/UserCheckColored.js";
|
|
3476
3487
|
export { UserChef } from "./icons/UserChef.js";
|
|
3477
3488
|
export { UserChefHairLong } from "./icons/UserChefHairLong.js";
|
|
3478
3489
|
export { UserCircleMinus } from "./icons/UserCircleMinus.js";
|
|
@@ -3523,6 +3534,7 @@ export { UserPoliceHairLong } from "./icons/UserPoliceHairLong.js";
|
|
|
3523
3534
|
export { UserPoliceTie } from "./icons/UserPoliceTie.js";
|
|
3524
3535
|
export { UserPoliceTieHairLong } from "./icons/UserPoliceTieHairLong.js";
|
|
3525
3536
|
export { UserQuestion } from "./icons/UserQuestion.js";
|
|
3537
|
+
export { UserQuestionColored } from "./icons/UserQuestionColored.js";
|
|
3526
3538
|
export { UserRobot } from "./icons/UserRobot.js";
|
|
3527
3539
|
export { UserRobotXmarks } from "./icons/UserRobotXmarks.js";
|
|
3528
3540
|
export { Users } from "./icons/Users.js";
|