@qall/icons 0.1.4 → 0.1.5
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/LayoutLeft.d.ts +48 -0
- package/dist/icons/LayoutLeft.js +48 -0
- package/dist/icons/LayoutLeftCollapse.d.ts +48 -0
- package/dist/icons/LayoutLeftCollapse.js +48 -0
- package/dist/icons/LayoutLeftExpand.d.ts +48 -0
- package/dist/icons/LayoutLeftExpand.js +48 -0
- package/dist/icons/LayoutRight.d.ts +48 -0
- package/dist/icons/LayoutRight.js +48 -0
- package/dist/icons/LayoutRightCollapse.d.ts +48 -0
- package/dist/icons/LayoutRightCollapse.js +48 -0
- package/dist/icons/LayoutRightExpand.d.ts +48 -0
- package/dist/icons/LayoutRightExpand.js +48 -0
- package/dist/icons/index.d.ts +6 -0
- package/dist/icons/index.js +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +6 -0
- package/package.json +1 -1
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @component
|
|
3
|
+
*
|
|
4
|
+
* @name — LayoutLeft
|
|
5
|
+
* @description — Qall SVG icon component, renders an SVG element.
|
|
6
|
+
* @preview — img - https://www.npmjs.com/package/@qall/icons#layout-left
|
|
7
|
+
* @see — https://www.npmjs.com/package/@qall/icons - Documentation
|
|
8
|
+
*
|
|
9
|
+
* @param props — Qall icon props and any valid SVG attribute
|
|
10
|
+
* @returns — Vue component
|
|
11
|
+
*
|
|
12
|
+
* @source — layout-left.svg
|
|
13
|
+
* @colored — false
|
|
14
|
+
*/
|
|
15
|
+
export declare const LayoutLeft: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
16
|
+
size: {
|
|
17
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
title: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
decorative: {
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
28
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
29
|
+
[key: string]: any;
|
|
30
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
|
+
size: {
|
|
32
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
33
|
+
default: string;
|
|
34
|
+
};
|
|
35
|
+
title: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
decorative: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
43
|
+
}>> & Readonly<{}>, {
|
|
44
|
+
size: string | number;
|
|
45
|
+
title: string;
|
|
46
|
+
decorative: boolean;
|
|
47
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
48
|
+
export default LayoutLeft;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
/**
|
|
3
|
+
* @component
|
|
4
|
+
*
|
|
5
|
+
* @name — LayoutLeft
|
|
6
|
+
* @description — Qall SVG icon component, renders an SVG element.
|
|
7
|
+
* @preview — img - https://www.npmjs.com/package/@qall/icons#layout-left
|
|
8
|
+
* @see — https://www.npmjs.com/package/@qall/icons - Documentation
|
|
9
|
+
*
|
|
10
|
+
* @param props — Qall icon props and any valid SVG attribute
|
|
11
|
+
* @returns — Vue component
|
|
12
|
+
*
|
|
13
|
+
* @source — layout-left.svg
|
|
14
|
+
* @colored — false
|
|
15
|
+
*/
|
|
16
|
+
export const LayoutLeft = defineComponent({
|
|
17
|
+
name: "LayoutLeft",
|
|
18
|
+
inheritAttrs: false,
|
|
19
|
+
props: {
|
|
20
|
+
size: {
|
|
21
|
+
type: [String, Number],
|
|
22
|
+
default: "1em"
|
|
23
|
+
},
|
|
24
|
+
title: {
|
|
25
|
+
type: String,
|
|
26
|
+
default: ""
|
|
27
|
+
},
|
|
28
|
+
decorative: {
|
|
29
|
+
type: Boolean,
|
|
30
|
+
default: true
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
setup(props, { attrs }) {
|
|
34
|
+
return () => h("svg", {
|
|
35
|
+
...attrs,
|
|
36
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
37
|
+
viewBox: "0 0 24 24",
|
|
38
|
+
width: props.size,
|
|
39
|
+
height: props.size,
|
|
40
|
+
fill: "currentColor",
|
|
41
|
+
"aria-hidden": props.decorative && !props.title ? "true" : undefined,
|
|
42
|
+
"aria-label": props.title || undefined,
|
|
43
|
+
role: props.title ? "img" : undefined,
|
|
44
|
+
innerHTML: "<path fill=\"currentColor\" d=\"M6 21a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3zM18 5h-8v14h8a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1\"/>"
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
});
|
|
48
|
+
export default LayoutLeft;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @component
|
|
3
|
+
*
|
|
4
|
+
* @name — LayoutLeftCollapse
|
|
5
|
+
* @description — Qall SVG icon component, renders an SVG element.
|
|
6
|
+
* @preview — img - https://www.npmjs.com/package/@qall/icons#layout-left-collapse
|
|
7
|
+
* @see — https://www.npmjs.com/package/@qall/icons - Documentation
|
|
8
|
+
*
|
|
9
|
+
* @param props — Qall icon props and any valid SVG attribute
|
|
10
|
+
* @returns — Vue component
|
|
11
|
+
*
|
|
12
|
+
* @source — layout-left-collapse.svg
|
|
13
|
+
* @colored — false
|
|
14
|
+
*/
|
|
15
|
+
export declare const LayoutLeftCollapse: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
16
|
+
size: {
|
|
17
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
title: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
decorative: {
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
28
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
29
|
+
[key: string]: any;
|
|
30
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
|
+
size: {
|
|
32
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
33
|
+
default: string;
|
|
34
|
+
};
|
|
35
|
+
title: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
decorative: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
43
|
+
}>> & Readonly<{}>, {
|
|
44
|
+
size: string | number;
|
|
45
|
+
title: string;
|
|
46
|
+
decorative: boolean;
|
|
47
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
48
|
+
export default LayoutLeftCollapse;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
/**
|
|
3
|
+
* @component
|
|
4
|
+
*
|
|
5
|
+
* @name — LayoutLeftCollapse
|
|
6
|
+
* @description — Qall SVG icon component, renders an SVG element.
|
|
7
|
+
* @preview — img - https://www.npmjs.com/package/@qall/icons#layout-left-collapse
|
|
8
|
+
* @see — https://www.npmjs.com/package/@qall/icons - Documentation
|
|
9
|
+
*
|
|
10
|
+
* @param props — Qall icon props and any valid SVG attribute
|
|
11
|
+
* @returns — Vue component
|
|
12
|
+
*
|
|
13
|
+
* @source — layout-left-collapse.svg
|
|
14
|
+
* @colored — false
|
|
15
|
+
*/
|
|
16
|
+
export const LayoutLeftCollapse = defineComponent({
|
|
17
|
+
name: "LayoutLeftCollapse",
|
|
18
|
+
inheritAttrs: false,
|
|
19
|
+
props: {
|
|
20
|
+
size: {
|
|
21
|
+
type: [String, Number],
|
|
22
|
+
default: "1em"
|
|
23
|
+
},
|
|
24
|
+
title: {
|
|
25
|
+
type: String,
|
|
26
|
+
default: ""
|
|
27
|
+
},
|
|
28
|
+
decorative: {
|
|
29
|
+
type: Boolean,
|
|
30
|
+
default: true
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
setup(props, { attrs }) {
|
|
34
|
+
return () => h("svg", {
|
|
35
|
+
...attrs,
|
|
36
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
37
|
+
viewBox: "0 0 24 24",
|
|
38
|
+
width: props.size,
|
|
39
|
+
height: props.size,
|
|
40
|
+
fill: "currentColor",
|
|
41
|
+
"aria-hidden": props.decorative && !props.title ? "true" : undefined,
|
|
42
|
+
"aria-label": props.title || undefined,
|
|
43
|
+
role: props.title ? "img" : undefined,
|
|
44
|
+
innerHTML: "<path fill=\"currentColor\" d=\"M18 3a3 3 0 0 1 2.995 2.824L21 6v12a3 3 0 0 1-2.824 2.995L18 21H6a3 3 0 0 1-2.995-2.824L3 18V6a3 3 0 0 1 2.824-2.995L6 3zm0 2H9v14h9a1 1 0 0 0 .993-.883L19 18V6a1 1 0 0 0-.883-.993zm-2.293 4.293a1 1 0 0 1 .083 1.32l-.083.094L14.415 12l1.292 1.293a1 1 0 0 1 .083 1.32l-.083.094a1 1 0 0 1-1.32.083l-.094-.083-2-2a1 1 0 0 1-.083-1.32l.083-.094 2-2a1 1 0 0 1 1.414 0\"/>"
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
});
|
|
48
|
+
export default LayoutLeftCollapse;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @component
|
|
3
|
+
*
|
|
4
|
+
* @name — LayoutLeftExpand
|
|
5
|
+
* @description — Qall SVG icon component, renders an SVG element.
|
|
6
|
+
* @preview — img - https://www.npmjs.com/package/@qall/icons#layout-left-expand
|
|
7
|
+
* @see — https://www.npmjs.com/package/@qall/icons - Documentation
|
|
8
|
+
*
|
|
9
|
+
* @param props — Qall icon props and any valid SVG attribute
|
|
10
|
+
* @returns — Vue component
|
|
11
|
+
*
|
|
12
|
+
* @source — layout-left-expand.svg
|
|
13
|
+
* @colored — false
|
|
14
|
+
*/
|
|
15
|
+
export declare const LayoutLeftExpand: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
16
|
+
size: {
|
|
17
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
title: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
decorative: {
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
28
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
29
|
+
[key: string]: any;
|
|
30
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
|
+
size: {
|
|
32
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
33
|
+
default: string;
|
|
34
|
+
};
|
|
35
|
+
title: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
decorative: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
43
|
+
}>> & Readonly<{}>, {
|
|
44
|
+
size: string | number;
|
|
45
|
+
title: string;
|
|
46
|
+
decorative: boolean;
|
|
47
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
48
|
+
export default LayoutLeftExpand;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
/**
|
|
3
|
+
* @component
|
|
4
|
+
*
|
|
5
|
+
* @name — LayoutLeftExpand
|
|
6
|
+
* @description — Qall SVG icon component, renders an SVG element.
|
|
7
|
+
* @preview — img - https://www.npmjs.com/package/@qall/icons#layout-left-expand
|
|
8
|
+
* @see — https://www.npmjs.com/package/@qall/icons - Documentation
|
|
9
|
+
*
|
|
10
|
+
* @param props — Qall icon props and any valid SVG attribute
|
|
11
|
+
* @returns — Vue component
|
|
12
|
+
*
|
|
13
|
+
* @source — layout-left-expand.svg
|
|
14
|
+
* @colored — false
|
|
15
|
+
*/
|
|
16
|
+
export const LayoutLeftExpand = defineComponent({
|
|
17
|
+
name: "LayoutLeftExpand",
|
|
18
|
+
inheritAttrs: false,
|
|
19
|
+
props: {
|
|
20
|
+
size: {
|
|
21
|
+
type: [String, Number],
|
|
22
|
+
default: "1em"
|
|
23
|
+
},
|
|
24
|
+
title: {
|
|
25
|
+
type: String,
|
|
26
|
+
default: ""
|
|
27
|
+
},
|
|
28
|
+
decorative: {
|
|
29
|
+
type: Boolean,
|
|
30
|
+
default: true
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
setup(props, { attrs }) {
|
|
34
|
+
return () => h("svg", {
|
|
35
|
+
...attrs,
|
|
36
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
37
|
+
viewBox: "0 0 24 24",
|
|
38
|
+
width: props.size,
|
|
39
|
+
height: props.size,
|
|
40
|
+
fill: "currentColor",
|
|
41
|
+
"aria-hidden": props.decorative && !props.title ? "true" : undefined,
|
|
42
|
+
"aria-label": props.title || undefined,
|
|
43
|
+
role: props.title ? "img" : undefined,
|
|
44
|
+
innerHTML: "<path fill=\"currentColor\" d=\"M18 3a3 3 0 0 1 2.995 2.824L21 6v12a3 3 0 0 1-2.824 2.995L18 21H6a3 3 0 0 1-2.995-2.824L3 18V6a3 3 0 0 1 2.824-2.995L6 3zm0 2H9v14h9a1 1 0 0 0 .993-.883L19 18V6a1 1 0 0 0-.883-.993zm-4.387 4.21.094.083 2 2a1 1 0 0 1 .083 1.32l-.083.094-2 2a1 1 0 0 1-1.497-1.32l.083-.094L13.585 12l-1.292-1.293a1 1 0 0 1-.083-1.32l.083-.094a1 1 0 0 1 1.32-.083\"/>"
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
});
|
|
48
|
+
export default LayoutLeftExpand;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @component
|
|
3
|
+
*
|
|
4
|
+
* @name — LayoutRight
|
|
5
|
+
* @description — Qall SVG icon component, renders an SVG element.
|
|
6
|
+
* @preview — img - https://www.npmjs.com/package/@qall/icons#layout-right
|
|
7
|
+
* @see — https://www.npmjs.com/package/@qall/icons - Documentation
|
|
8
|
+
*
|
|
9
|
+
* @param props — Qall icon props and any valid SVG attribute
|
|
10
|
+
* @returns — Vue component
|
|
11
|
+
*
|
|
12
|
+
* @source — layout-right.svg
|
|
13
|
+
* @colored — false
|
|
14
|
+
*/
|
|
15
|
+
export declare const LayoutRight: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
16
|
+
size: {
|
|
17
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
title: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
decorative: {
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
28
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
29
|
+
[key: string]: any;
|
|
30
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
|
+
size: {
|
|
32
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
33
|
+
default: string;
|
|
34
|
+
};
|
|
35
|
+
title: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
decorative: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
43
|
+
}>> & Readonly<{}>, {
|
|
44
|
+
size: string | number;
|
|
45
|
+
title: string;
|
|
46
|
+
decorative: boolean;
|
|
47
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
48
|
+
export default LayoutRight;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
/**
|
|
3
|
+
* @component
|
|
4
|
+
*
|
|
5
|
+
* @name — LayoutRight
|
|
6
|
+
* @description — Qall SVG icon component, renders an SVG element.
|
|
7
|
+
* @preview — img - https://www.npmjs.com/package/@qall/icons#layout-right
|
|
8
|
+
* @see — https://www.npmjs.com/package/@qall/icons - Documentation
|
|
9
|
+
*
|
|
10
|
+
* @param props — Qall icon props and any valid SVG attribute
|
|
11
|
+
* @returns — Vue component
|
|
12
|
+
*
|
|
13
|
+
* @source — layout-right.svg
|
|
14
|
+
* @colored — false
|
|
15
|
+
*/
|
|
16
|
+
export const LayoutRight = defineComponent({
|
|
17
|
+
name: "LayoutRight",
|
|
18
|
+
inheritAttrs: false,
|
|
19
|
+
props: {
|
|
20
|
+
size: {
|
|
21
|
+
type: [String, Number],
|
|
22
|
+
default: "1em"
|
|
23
|
+
},
|
|
24
|
+
title: {
|
|
25
|
+
type: String,
|
|
26
|
+
default: ""
|
|
27
|
+
},
|
|
28
|
+
decorative: {
|
|
29
|
+
type: Boolean,
|
|
30
|
+
default: true
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
setup(props, { attrs }) {
|
|
34
|
+
return () => h("svg", {
|
|
35
|
+
...attrs,
|
|
36
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
37
|
+
viewBox: "0 0 24 24",
|
|
38
|
+
width: props.size,
|
|
39
|
+
height: props.size,
|
|
40
|
+
fill: "currentColor",
|
|
41
|
+
"aria-hidden": props.decorative && !props.title ? "true" : undefined,
|
|
42
|
+
"aria-label": props.title || undefined,
|
|
43
|
+
role: props.title ? "img" : undefined,
|
|
44
|
+
innerHTML: "<path fill=\"currentColor\" d=\"M6 21a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3zm8-16H6a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8z\"/>"
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
});
|
|
48
|
+
export default LayoutRight;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @component
|
|
3
|
+
*
|
|
4
|
+
* @name — LayoutRightCollapse
|
|
5
|
+
* @description — Qall SVG icon component, renders an SVG element.
|
|
6
|
+
* @preview — img - https://www.npmjs.com/package/@qall/icons#layout-right-collapse
|
|
7
|
+
* @see — https://www.npmjs.com/package/@qall/icons - Documentation
|
|
8
|
+
*
|
|
9
|
+
* @param props — Qall icon props and any valid SVG attribute
|
|
10
|
+
* @returns — Vue component
|
|
11
|
+
*
|
|
12
|
+
* @source — layout-right-collapse.svg
|
|
13
|
+
* @colored — false
|
|
14
|
+
*/
|
|
15
|
+
export declare const LayoutRightCollapse: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
16
|
+
size: {
|
|
17
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
title: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
decorative: {
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
28
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
29
|
+
[key: string]: any;
|
|
30
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
|
+
size: {
|
|
32
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
33
|
+
default: string;
|
|
34
|
+
};
|
|
35
|
+
title: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
decorative: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
43
|
+
}>> & Readonly<{}>, {
|
|
44
|
+
size: string | number;
|
|
45
|
+
title: string;
|
|
46
|
+
decorative: boolean;
|
|
47
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
48
|
+
export default LayoutRightCollapse;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
/**
|
|
3
|
+
* @component
|
|
4
|
+
*
|
|
5
|
+
* @name — LayoutRightCollapse
|
|
6
|
+
* @description — Qall SVG icon component, renders an SVG element.
|
|
7
|
+
* @preview — img - https://www.npmjs.com/package/@qall/icons#layout-right-collapse
|
|
8
|
+
* @see — https://www.npmjs.com/package/@qall/icons - Documentation
|
|
9
|
+
*
|
|
10
|
+
* @param props — Qall icon props and any valid SVG attribute
|
|
11
|
+
* @returns — Vue component
|
|
12
|
+
*
|
|
13
|
+
* @source — layout-right-collapse.svg
|
|
14
|
+
* @colored — false
|
|
15
|
+
*/
|
|
16
|
+
export const LayoutRightCollapse = defineComponent({
|
|
17
|
+
name: "LayoutRightCollapse",
|
|
18
|
+
inheritAttrs: false,
|
|
19
|
+
props: {
|
|
20
|
+
size: {
|
|
21
|
+
type: [String, Number],
|
|
22
|
+
default: "1em"
|
|
23
|
+
},
|
|
24
|
+
title: {
|
|
25
|
+
type: String,
|
|
26
|
+
default: ""
|
|
27
|
+
},
|
|
28
|
+
decorative: {
|
|
29
|
+
type: Boolean,
|
|
30
|
+
default: true
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
setup(props, { attrs }) {
|
|
34
|
+
return () => h("svg", {
|
|
35
|
+
...attrs,
|
|
36
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
37
|
+
viewBox: "0 0 24 24",
|
|
38
|
+
width: props.size,
|
|
39
|
+
height: props.size,
|
|
40
|
+
fill: "currentColor",
|
|
41
|
+
"aria-hidden": props.decorative && !props.title ? "true" : undefined,
|
|
42
|
+
"aria-label": props.title || undefined,
|
|
43
|
+
role: props.title ? "img" : undefined,
|
|
44
|
+
innerHTML: "<path fill=\"currentColor\" d=\"M18 3a3 3 0 0 1 2.995 2.824L21 6v12a3 3 0 0 1-2.824 2.995L18 21H6a3 3 0 0 1-2.995-2.824L3 18V6a3 3 0 0 1 2.824-2.995L6 3zm-3 2H6a1 1 0 0 0-.993.883L5 6v12a1 1 0 0 0 .883.993L6 19h9zM9.613 9.21l.094.083 2 2a1 1 0 0 1 .083 1.32l-.083.094-2 2a1 1 0 0 1-1.497-1.32l.083-.094L9.585 12l-1.292-1.293a1 1 0 0 1-.083-1.32l.083-.094a1 1 0 0 1 1.32-.083\"/>"
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
});
|
|
48
|
+
export default LayoutRightCollapse;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @component
|
|
3
|
+
*
|
|
4
|
+
* @name — LayoutRightExpand
|
|
5
|
+
* @description — Qall SVG icon component, renders an SVG element.
|
|
6
|
+
* @preview — img - https://www.npmjs.com/package/@qall/icons#layout-right-expand
|
|
7
|
+
* @see — https://www.npmjs.com/package/@qall/icons - Documentation
|
|
8
|
+
*
|
|
9
|
+
* @param props — Qall icon props and any valid SVG attribute
|
|
10
|
+
* @returns — Vue component
|
|
11
|
+
*
|
|
12
|
+
* @source — layout-right-expand.svg
|
|
13
|
+
* @colored — false
|
|
14
|
+
*/
|
|
15
|
+
export declare const LayoutRightExpand: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
16
|
+
size: {
|
|
17
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
title: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
default: string;
|
|
23
|
+
};
|
|
24
|
+
decorative: {
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
28
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
29
|
+
[key: string]: any;
|
|
30
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
|
+
size: {
|
|
32
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
33
|
+
default: string;
|
|
34
|
+
};
|
|
35
|
+
title: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
decorative: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
43
|
+
}>> & Readonly<{}>, {
|
|
44
|
+
size: string | number;
|
|
45
|
+
title: string;
|
|
46
|
+
decorative: boolean;
|
|
47
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
48
|
+
export default LayoutRightExpand;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { defineComponent, h } from "vue";
|
|
2
|
+
/**
|
|
3
|
+
* @component
|
|
4
|
+
*
|
|
5
|
+
* @name — LayoutRightExpand
|
|
6
|
+
* @description — Qall SVG icon component, renders an SVG element.
|
|
7
|
+
* @preview — img - https://www.npmjs.com/package/@qall/icons#layout-right-expand
|
|
8
|
+
* @see — https://www.npmjs.com/package/@qall/icons - Documentation
|
|
9
|
+
*
|
|
10
|
+
* @param props — Qall icon props and any valid SVG attribute
|
|
11
|
+
* @returns — Vue component
|
|
12
|
+
*
|
|
13
|
+
* @source — layout-right-expand.svg
|
|
14
|
+
* @colored — false
|
|
15
|
+
*/
|
|
16
|
+
export const LayoutRightExpand = defineComponent({
|
|
17
|
+
name: "LayoutRightExpand",
|
|
18
|
+
inheritAttrs: false,
|
|
19
|
+
props: {
|
|
20
|
+
size: {
|
|
21
|
+
type: [String, Number],
|
|
22
|
+
default: "1em"
|
|
23
|
+
},
|
|
24
|
+
title: {
|
|
25
|
+
type: String,
|
|
26
|
+
default: ""
|
|
27
|
+
},
|
|
28
|
+
decorative: {
|
|
29
|
+
type: Boolean,
|
|
30
|
+
default: true
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
setup(props, { attrs }) {
|
|
34
|
+
return () => h("svg", {
|
|
35
|
+
...attrs,
|
|
36
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
37
|
+
viewBox: "0 0 24 24",
|
|
38
|
+
width: props.size,
|
|
39
|
+
height: props.size,
|
|
40
|
+
fill: "currentColor",
|
|
41
|
+
"aria-hidden": props.decorative && !props.title ? "true" : undefined,
|
|
42
|
+
"aria-label": props.title || undefined,
|
|
43
|
+
role: props.title ? "img" : undefined,
|
|
44
|
+
innerHTML: "<path fill=\"currentColor\" d=\"M18 3a3 3 0 0 1 2.995 2.824L21 6v12a3 3 0 0 1-2.824 2.995L18 21H6a3 3 0 0 1-2.995-2.824L3 18V6a3 3 0 0 1 2.824-2.995L6 3zm-3 2H6a1 1 0 0 0-.993.883L5 6v12a1 1 0 0 0 .883.993L6 19h9zm-3.293 4.293a1 1 0 0 1 .083 1.32l-.083.094L10.415 12l1.292 1.293a1 1 0 0 1 .083 1.32l-.083.094a1 1 0 0 1-1.32.083l-.094-.083-2-2a1 1 0 0 1-.083-1.32l.083-.094 2-2a1 1 0 0 1 1.414 0\"/>"
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
});
|
|
48
|
+
export default LayoutRightExpand;
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -2011,6 +2011,12 @@ export { LassoSparkles } from "./LassoSparkles.js";
|
|
|
2011
2011
|
export { LayerGroup } from "./LayerGroup.js";
|
|
2012
2012
|
export { LayerMinus } from "./LayerMinus.js";
|
|
2013
2013
|
export { LayerPlus } from "./LayerPlus.js";
|
|
2014
|
+
export { LayoutLeft } from "./LayoutLeft.js";
|
|
2015
|
+
export { LayoutLeftCollapse } from "./LayoutLeftCollapse.js";
|
|
2016
|
+
export { LayoutLeftExpand } from "./LayoutLeftExpand.js";
|
|
2017
|
+
export { LayoutRight } from "./LayoutRight.js";
|
|
2018
|
+
export { LayoutRightCollapse } from "./LayoutRightCollapse.js";
|
|
2019
|
+
export { LayoutRightExpand } from "./LayoutRightExpand.js";
|
|
2014
2020
|
export { Leaf } from "./Leaf.js";
|
|
2015
2021
|
export { LeafHeart } from "./LeafHeart.js";
|
|
2016
2022
|
export { LeafMaple } from "./LeafMaple.js";
|
package/dist/icons/index.js
CHANGED
|
@@ -2011,6 +2011,12 @@ export { LassoSparkles } from "./LassoSparkles.js";
|
|
|
2011
2011
|
export { LayerGroup } from "./LayerGroup.js";
|
|
2012
2012
|
export { LayerMinus } from "./LayerMinus.js";
|
|
2013
2013
|
export { LayerPlus } from "./LayerPlus.js";
|
|
2014
|
+
export { LayoutLeft } from "./LayoutLeft.js";
|
|
2015
|
+
export { LayoutLeftCollapse } from "./LayoutLeftCollapse.js";
|
|
2016
|
+
export { LayoutLeftExpand } from "./LayoutLeftExpand.js";
|
|
2017
|
+
export { LayoutRight } from "./LayoutRight.js";
|
|
2018
|
+
export { LayoutRightCollapse } from "./LayoutRightCollapse.js";
|
|
2019
|
+
export { LayoutRightExpand } from "./LayoutRightExpand.js";
|
|
2014
2020
|
export { Leaf } from "./Leaf.js";
|
|
2015
2021
|
export { LeafHeart } from "./LeafHeart.js";
|
|
2016
2022
|
export { LeafMaple } from "./LeafMaple.js";
|
package/dist/index.d.ts
CHANGED
|
@@ -2011,6 +2011,12 @@ export { LassoSparkles } from "./icons/LassoSparkles.js";
|
|
|
2011
2011
|
export { LayerGroup } from "./icons/LayerGroup.js";
|
|
2012
2012
|
export { LayerMinus } from "./icons/LayerMinus.js";
|
|
2013
2013
|
export { LayerPlus } from "./icons/LayerPlus.js";
|
|
2014
|
+
export { LayoutLeft } from "./icons/LayoutLeft.js";
|
|
2015
|
+
export { LayoutLeftCollapse } from "./icons/LayoutLeftCollapse.js";
|
|
2016
|
+
export { LayoutLeftExpand } from "./icons/LayoutLeftExpand.js";
|
|
2017
|
+
export { LayoutRight } from "./icons/LayoutRight.js";
|
|
2018
|
+
export { LayoutRightCollapse } from "./icons/LayoutRightCollapse.js";
|
|
2019
|
+
export { LayoutRightExpand } from "./icons/LayoutRightExpand.js";
|
|
2014
2020
|
export { Leaf } from "./icons/Leaf.js";
|
|
2015
2021
|
export { LeafHeart } from "./icons/LeafHeart.js";
|
|
2016
2022
|
export { LeafMaple } from "./icons/LeafMaple.js";
|
package/dist/index.js
CHANGED
|
@@ -2011,6 +2011,12 @@ export { LassoSparkles } from "./icons/LassoSparkles.js";
|
|
|
2011
2011
|
export { LayerGroup } from "./icons/LayerGroup.js";
|
|
2012
2012
|
export { LayerMinus } from "./icons/LayerMinus.js";
|
|
2013
2013
|
export { LayerPlus } from "./icons/LayerPlus.js";
|
|
2014
|
+
export { LayoutLeft } from "./icons/LayoutLeft.js";
|
|
2015
|
+
export { LayoutLeftCollapse } from "./icons/LayoutLeftCollapse.js";
|
|
2016
|
+
export { LayoutLeftExpand } from "./icons/LayoutLeftExpand.js";
|
|
2017
|
+
export { LayoutRight } from "./icons/LayoutRight.js";
|
|
2018
|
+
export { LayoutRightCollapse } from "./icons/LayoutRightCollapse.js";
|
|
2019
|
+
export { LayoutRightExpand } from "./icons/LayoutRightExpand.js";
|
|
2014
2020
|
export { Leaf } from "./icons/Leaf.js";
|
|
2015
2021
|
export { LeafHeart } from "./icons/LeafHeart.js";
|
|
2016
2022
|
export { LeafMaple } from "./icons/LeafMaple.js";
|