@takeoff-icons/vue 0.1.0 → 0.1.1
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/takeoff-rocket/TakeoffRocketIconFilledBevel.d.ts +35 -0
- package/dist/takeoff-rocket/TakeoffRocketIconFilledBevel.js +35 -0
- package/dist/takeoff-rocket/TakeoffRocketIconFilledRounded.d.ts +35 -0
- package/dist/takeoff-rocket/TakeoffRocketIconFilledRounded.js +35 -0
- package/dist/takeoff-rocket/TakeoffRocketIconFilledSharp.d.ts +35 -0
- package/dist/takeoff-rocket/TakeoffRocketIconFilledSharp.js +35 -0
- package/dist/takeoff-rocket/TakeoffRocketIconFilledTk.d.ts +35 -0
- package/dist/takeoff-rocket/TakeoffRocketIconFilledTk.js +35 -0
- package/dist/takeoff-rocket/TakeoffRocketIconOutlinedBevel.d.ts +35 -0
- package/dist/takeoff-rocket/TakeoffRocketIconOutlinedBevel.js +35 -0
- package/dist/takeoff-rocket/TakeoffRocketIconOutlinedRounded.d.ts +35 -0
- package/dist/takeoff-rocket/TakeoffRocketIconOutlinedRounded.js +35 -0
- package/dist/takeoff-rocket/TakeoffRocketIconOutlinedSharp.d.ts +35 -0
- package/dist/takeoff-rocket/TakeoffRocketIconOutlinedSharp.js +35 -0
- package/dist/takeoff-rocket/TakeoffRocketIconOutlinedTk.d.ts +35 -0
- package/dist/takeoff-rocket/TakeoffRocketIconOutlinedTk.js +35 -0
- package/dist/takeoff-rocket/index.d.ts +8 -0
- package/dist/takeoff-rocket/index.js +9 -0
- package/package.json +3 -3
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
export declare const TakeoffRocketIconFilledBevel: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
size: {
|
|
4
|
+
type: PropType<number | string>;
|
|
5
|
+
default: number;
|
|
6
|
+
};
|
|
7
|
+
color: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
title: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: undefined;
|
|
14
|
+
};
|
|
15
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
|
+
size: {
|
|
19
|
+
type: PropType<number | string>;
|
|
20
|
+
default: number;
|
|
21
|
+
};
|
|
22
|
+
color: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
title: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: undefined;
|
|
29
|
+
};
|
|
30
|
+
}>> & Readonly<{}>, {
|
|
31
|
+
size: string | number;
|
|
32
|
+
color: string;
|
|
33
|
+
title: string;
|
|
34
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
35
|
+
export default TakeoffRocketIconFilledBevel;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
// AUTO-GENERATED — DO NOT EDIT
|
|
2
|
+
import { defineComponent, h } from 'vue';
|
|
3
|
+
export const TakeoffRocketIconFilledBevel = defineComponent({
|
|
4
|
+
name: 'TakeoffRocketIconFilledBevel',
|
|
5
|
+
inheritAttrs: false,
|
|
6
|
+
props: {
|
|
7
|
+
size: {
|
|
8
|
+
type: [Number, String],
|
|
9
|
+
default: 24,
|
|
10
|
+
},
|
|
11
|
+
color: {
|
|
12
|
+
type: String,
|
|
13
|
+
default: 'currentColor',
|
|
14
|
+
},
|
|
15
|
+
title: {
|
|
16
|
+
type: String,
|
|
17
|
+
default: undefined,
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
setup(props, { attrs }) {
|
|
21
|
+
return () => h('svg', {
|
|
22
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
23
|
+
viewBox: '0 0 24 24',
|
|
24
|
+
width: props.size,
|
|
25
|
+
height: props.size,
|
|
26
|
+
style: { color: props.color },
|
|
27
|
+
role: props.title != null ? 'img' : undefined,
|
|
28
|
+
'aria-label': props.title,
|
|
29
|
+
'aria-hidden': props.title != null ? undefined : 'true',
|
|
30
|
+
...attrs,
|
|
31
|
+
innerHTML: '<path fill="currentColor" d="M12 2c2.5 1.5 4.5 4.5 4.5 8 0 1.6-.4 3.1-1 4.4l-1.3-.8c.5-1.1.8-2.3.8-3.6 0-2.6-1.3-4.9-3-6.2-1.7 1.3-3 3.6-3 6.2 0 1.3.3 2.5.8 3.6l-1.3.8c-.6-1.3-1-2.8-1-4.4 0-3.5 2-6.5 4.5-8m0 7.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m-3.5 5.7 1.5 1v3.3L7.5 21v-4c0-.7.4-1.4 1-1.8m7 0c.6.4 1 1.1 1 1.8v4L14 19.5v-3.3z"/>',
|
|
32
|
+
});
|
|
33
|
+
},
|
|
34
|
+
});
|
|
35
|
+
export default TakeoffRocketIconFilledBevel;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
export declare const TakeoffRocketIconFilledRounded: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
size: {
|
|
4
|
+
type: PropType<number | string>;
|
|
5
|
+
default: number;
|
|
6
|
+
};
|
|
7
|
+
color: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
title: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: undefined;
|
|
14
|
+
};
|
|
15
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
|
+
size: {
|
|
19
|
+
type: PropType<number | string>;
|
|
20
|
+
default: number;
|
|
21
|
+
};
|
|
22
|
+
color: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
title: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: undefined;
|
|
29
|
+
};
|
|
30
|
+
}>> & Readonly<{}>, {
|
|
31
|
+
size: string | number;
|
|
32
|
+
color: string;
|
|
33
|
+
title: string;
|
|
34
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
35
|
+
export default TakeoffRocketIconFilledRounded;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
// AUTO-GENERATED — DO NOT EDIT
|
|
2
|
+
import { defineComponent, h } from 'vue';
|
|
3
|
+
export const TakeoffRocketIconFilledRounded = defineComponent({
|
|
4
|
+
name: 'TakeoffRocketIconFilledRounded',
|
|
5
|
+
inheritAttrs: false,
|
|
6
|
+
props: {
|
|
7
|
+
size: {
|
|
8
|
+
type: [Number, String],
|
|
9
|
+
default: 24,
|
|
10
|
+
},
|
|
11
|
+
color: {
|
|
12
|
+
type: String,
|
|
13
|
+
default: 'currentColor',
|
|
14
|
+
},
|
|
15
|
+
title: {
|
|
16
|
+
type: String,
|
|
17
|
+
default: undefined,
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
setup(props, { attrs }) {
|
|
21
|
+
return () => h('svg', {
|
|
22
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
23
|
+
viewBox: '0 0 24 24',
|
|
24
|
+
width: props.size,
|
|
25
|
+
height: props.size,
|
|
26
|
+
style: { color: props.color },
|
|
27
|
+
role: props.title != null ? 'img' : undefined,
|
|
28
|
+
'aria-label': props.title,
|
|
29
|
+
'aria-hidden': props.title != null ? undefined : 'true',
|
|
30
|
+
...attrs,
|
|
31
|
+
innerHTML: '<path fill="currentColor" d="M12 2c2.5 1.5 4.5 4.5 4.5 8 0 1.6-.4 3.1-1 4.4l-1.3-.8c.5-1.1.8-2.3.8-3.6 0-2.6-1.3-4.9-3-6.2-1.7 1.3-3 3.6-3 6.2 0 1.3.3 2.5.8 3.6l-1.3.8c-.6-1.3-1-2.8-1-4.4 0-3.5 2-6.5 4.5-8m0 7.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m-3.5 5.7 1.5 1v3.3L7.5 21v-4c0-.7.4-1.4 1-1.8m7 0c.6.4 1 1.1 1 1.8v4L14 19.5v-3.3z"/>',
|
|
32
|
+
});
|
|
33
|
+
},
|
|
34
|
+
});
|
|
35
|
+
export default TakeoffRocketIconFilledRounded;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
export declare const TakeoffRocketIconFilledSharp: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
size: {
|
|
4
|
+
type: PropType<number | string>;
|
|
5
|
+
default: number;
|
|
6
|
+
};
|
|
7
|
+
color: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
title: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: undefined;
|
|
14
|
+
};
|
|
15
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
|
+
size: {
|
|
19
|
+
type: PropType<number | string>;
|
|
20
|
+
default: number;
|
|
21
|
+
};
|
|
22
|
+
color: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
title: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: undefined;
|
|
29
|
+
};
|
|
30
|
+
}>> & Readonly<{}>, {
|
|
31
|
+
size: string | number;
|
|
32
|
+
color: string;
|
|
33
|
+
title: string;
|
|
34
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
35
|
+
export default TakeoffRocketIconFilledSharp;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
// AUTO-GENERATED — DO NOT EDIT
|
|
2
|
+
import { defineComponent, h } from 'vue';
|
|
3
|
+
export const TakeoffRocketIconFilledSharp = defineComponent({
|
|
4
|
+
name: 'TakeoffRocketIconFilledSharp',
|
|
5
|
+
inheritAttrs: false,
|
|
6
|
+
props: {
|
|
7
|
+
size: {
|
|
8
|
+
type: [Number, String],
|
|
9
|
+
default: 24,
|
|
10
|
+
},
|
|
11
|
+
color: {
|
|
12
|
+
type: String,
|
|
13
|
+
default: 'currentColor',
|
|
14
|
+
},
|
|
15
|
+
title: {
|
|
16
|
+
type: String,
|
|
17
|
+
default: undefined,
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
setup(props, { attrs }) {
|
|
21
|
+
return () => h('svg', {
|
|
22
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
23
|
+
viewBox: '0 0 24 24',
|
|
24
|
+
width: props.size,
|
|
25
|
+
height: props.size,
|
|
26
|
+
style: { color: props.color },
|
|
27
|
+
role: props.title != null ? 'img' : undefined,
|
|
28
|
+
'aria-label': props.title,
|
|
29
|
+
'aria-hidden': props.title != null ? undefined : 'true',
|
|
30
|
+
...attrs,
|
|
31
|
+
innerHTML: '<path fill="currentColor" d="M12 2c2.5 1.5 4.5 4.5 4.5 8 0 1.6-.4 3.1-1 4.4l-1.3-.8c.5-1.1.8-2.3.8-3.6 0-2.6-1.3-4.9-3-6.2-1.7 1.3-3 3.6-3 6.2 0 1.3.3 2.5.8 3.6l-1.3.8c-.6-1.3-1-2.8-1-4.4 0-3.5 2-6.5 4.5-8m0 7.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m-3.5 5.7 1.5 1v3.3L7.5 21v-4c0-.7.4-1.4 1-1.8m7 0c.6.4 1 1.1 1 1.8v4L14 19.5v-3.3z"/>',
|
|
32
|
+
});
|
|
33
|
+
},
|
|
34
|
+
});
|
|
35
|
+
export default TakeoffRocketIconFilledSharp;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
export declare const TakeoffRocketIconFilledTk: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
size: {
|
|
4
|
+
type: PropType<number | string>;
|
|
5
|
+
default: number;
|
|
6
|
+
};
|
|
7
|
+
color: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
title: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: undefined;
|
|
14
|
+
};
|
|
15
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
|
+
size: {
|
|
19
|
+
type: PropType<number | string>;
|
|
20
|
+
default: number;
|
|
21
|
+
};
|
|
22
|
+
color: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
title: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: undefined;
|
|
29
|
+
};
|
|
30
|
+
}>> & Readonly<{}>, {
|
|
31
|
+
size: string | number;
|
|
32
|
+
color: string;
|
|
33
|
+
title: string;
|
|
34
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
35
|
+
export default TakeoffRocketIconFilledTk;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
// AUTO-GENERATED — DO NOT EDIT
|
|
2
|
+
import { defineComponent, h } from 'vue';
|
|
3
|
+
export const TakeoffRocketIconFilledTk = defineComponent({
|
|
4
|
+
name: 'TakeoffRocketIconFilledTk',
|
|
5
|
+
inheritAttrs: false,
|
|
6
|
+
props: {
|
|
7
|
+
size: {
|
|
8
|
+
type: [Number, String],
|
|
9
|
+
default: 24,
|
|
10
|
+
},
|
|
11
|
+
color: {
|
|
12
|
+
type: String,
|
|
13
|
+
default: 'currentColor',
|
|
14
|
+
},
|
|
15
|
+
title: {
|
|
16
|
+
type: String,
|
|
17
|
+
default: undefined,
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
setup(props, { attrs }) {
|
|
21
|
+
return () => h('svg', {
|
|
22
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
23
|
+
viewBox: '0 0 24 24',
|
|
24
|
+
width: props.size,
|
|
25
|
+
height: props.size,
|
|
26
|
+
style: { color: props.color },
|
|
27
|
+
role: props.title != null ? 'img' : undefined,
|
|
28
|
+
'aria-label': props.title,
|
|
29
|
+
'aria-hidden': props.title != null ? undefined : 'true',
|
|
30
|
+
...attrs,
|
|
31
|
+
innerHTML: '<path fill="currentColor" d="M12 2c2.5 1.5 4.5 4.5 4.5 8 0 1.6-.4 3.1-1 4.4l-1.3-.8c.5-1.1.8-2.3.8-3.6 0-2.6-1.3-4.9-3-6.2-1.7 1.3-3 3.6-3 6.2 0 1.3.3 2.5.8 3.6l-1.3.8c-.6-1.3-1-2.8-1-4.4 0-3.5 2-6.5 4.5-8m0 7.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m-3.5 5.7 1.5 1v3.3L7.5 21v-4c0-.7.4-1.4 1-1.8m7 0c.6.4 1 1.1 1 1.8v4L14 19.5v-3.3z"/>',
|
|
32
|
+
});
|
|
33
|
+
},
|
|
34
|
+
});
|
|
35
|
+
export default TakeoffRocketIconFilledTk;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
export declare const TakeoffRocketIconOutlinedBevel: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
size: {
|
|
4
|
+
type: PropType<number | string>;
|
|
5
|
+
default: number;
|
|
6
|
+
};
|
|
7
|
+
color: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
title: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: undefined;
|
|
14
|
+
};
|
|
15
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
|
+
size: {
|
|
19
|
+
type: PropType<number | string>;
|
|
20
|
+
default: number;
|
|
21
|
+
};
|
|
22
|
+
color: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
title: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: undefined;
|
|
29
|
+
};
|
|
30
|
+
}>> & Readonly<{}>, {
|
|
31
|
+
size: string | number;
|
|
32
|
+
color: string;
|
|
33
|
+
title: string;
|
|
34
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
35
|
+
export default TakeoffRocketIconOutlinedBevel;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
// AUTO-GENERATED — DO NOT EDIT
|
|
2
|
+
import { defineComponent, h } from 'vue';
|
|
3
|
+
export const TakeoffRocketIconOutlinedBevel = defineComponent({
|
|
4
|
+
name: 'TakeoffRocketIconOutlinedBevel',
|
|
5
|
+
inheritAttrs: false,
|
|
6
|
+
props: {
|
|
7
|
+
size: {
|
|
8
|
+
type: [Number, String],
|
|
9
|
+
default: 24,
|
|
10
|
+
},
|
|
11
|
+
color: {
|
|
12
|
+
type: String,
|
|
13
|
+
default: 'currentColor',
|
|
14
|
+
},
|
|
15
|
+
title: {
|
|
16
|
+
type: String,
|
|
17
|
+
default: undefined,
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
setup(props, { attrs }) {
|
|
21
|
+
return () => h('svg', {
|
|
22
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
23
|
+
viewBox: '0 0 24 24',
|
|
24
|
+
width: props.size,
|
|
25
|
+
height: props.size,
|
|
26
|
+
style: { color: props.color },
|
|
27
|
+
role: props.title != null ? 'img' : undefined,
|
|
28
|
+
'aria-label': props.title,
|
|
29
|
+
'aria-hidden': props.title != null ? undefined : 'true',
|
|
30
|
+
...attrs,
|
|
31
|
+
innerHTML: '<path fill="currentColor" d="M12 2c2.5 1.5 4.5 4.5 4.5 8 0 1.6-.4 3.1-1 4.4l-1.3-.8c.5-1.1.8-2.3.8-3.6 0-2.6-1.3-4.9-3-6.2-1.7 1.3-3 3.6-3 6.2 0 1.3.3 2.5.8 3.6l-1.3.8c-.6-1.3-1-2.8-1-4.4 0-3.5 2-6.5 4.5-8m0 7.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m-3.5 5.7 1.5 1v3.3L7.5 21v-4c0-.7.4-1.4 1-1.8m7 0c.6.4 1 1.1 1 1.8v4L14 19.5v-3.3z"/>',
|
|
32
|
+
});
|
|
33
|
+
},
|
|
34
|
+
});
|
|
35
|
+
export default TakeoffRocketIconOutlinedBevel;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
export declare const TakeoffRocketIconOutlinedRounded: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
size: {
|
|
4
|
+
type: PropType<number | string>;
|
|
5
|
+
default: number;
|
|
6
|
+
};
|
|
7
|
+
color: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
title: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: undefined;
|
|
14
|
+
};
|
|
15
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
|
+
size: {
|
|
19
|
+
type: PropType<number | string>;
|
|
20
|
+
default: number;
|
|
21
|
+
};
|
|
22
|
+
color: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
title: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: undefined;
|
|
29
|
+
};
|
|
30
|
+
}>> & Readonly<{}>, {
|
|
31
|
+
size: string | number;
|
|
32
|
+
color: string;
|
|
33
|
+
title: string;
|
|
34
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
35
|
+
export default TakeoffRocketIconOutlinedRounded;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
// AUTO-GENERATED — DO NOT EDIT
|
|
2
|
+
import { defineComponent, h } from 'vue';
|
|
3
|
+
export const TakeoffRocketIconOutlinedRounded = defineComponent({
|
|
4
|
+
name: 'TakeoffRocketIconOutlinedRounded',
|
|
5
|
+
inheritAttrs: false,
|
|
6
|
+
props: {
|
|
7
|
+
size: {
|
|
8
|
+
type: [Number, String],
|
|
9
|
+
default: 24,
|
|
10
|
+
},
|
|
11
|
+
color: {
|
|
12
|
+
type: String,
|
|
13
|
+
default: 'currentColor',
|
|
14
|
+
},
|
|
15
|
+
title: {
|
|
16
|
+
type: String,
|
|
17
|
+
default: undefined,
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
setup(props, { attrs }) {
|
|
21
|
+
return () => h('svg', {
|
|
22
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
23
|
+
viewBox: '0 0 24 24',
|
|
24
|
+
width: props.size,
|
|
25
|
+
height: props.size,
|
|
26
|
+
style: { color: props.color },
|
|
27
|
+
role: props.title != null ? 'img' : undefined,
|
|
28
|
+
'aria-label': props.title,
|
|
29
|
+
'aria-hidden': props.title != null ? undefined : 'true',
|
|
30
|
+
...attrs,
|
|
31
|
+
innerHTML: '<path fill="currentColor" d="M12 2c2.5 1.5 4.5 4.5 4.5 8 0 1.6-.4 3.1-1 4.4l-1.3-.8c.5-1.1.8-2.3.8-3.6 0-2.6-1.3-4.9-3-6.2-1.7 1.3-3 3.6-3 6.2 0 1.3.3 2.5.8 3.6l-1.3.8c-.6-1.3-1-2.8-1-4.4 0-3.5 2-6.5 4.5-8m0 7.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m-3.5 5.7 1.5 1v3.3L7.5 21v-4c0-.7.4-1.4 1-1.8m7 0c.6.4 1 1.1 1 1.8v4L14 19.5v-3.3z"/>',
|
|
32
|
+
});
|
|
33
|
+
},
|
|
34
|
+
});
|
|
35
|
+
export default TakeoffRocketIconOutlinedRounded;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
export declare const TakeoffRocketIconOutlinedSharp: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
size: {
|
|
4
|
+
type: PropType<number | string>;
|
|
5
|
+
default: number;
|
|
6
|
+
};
|
|
7
|
+
color: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
title: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: undefined;
|
|
14
|
+
};
|
|
15
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
|
+
size: {
|
|
19
|
+
type: PropType<number | string>;
|
|
20
|
+
default: number;
|
|
21
|
+
};
|
|
22
|
+
color: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
title: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: undefined;
|
|
29
|
+
};
|
|
30
|
+
}>> & Readonly<{}>, {
|
|
31
|
+
size: string | number;
|
|
32
|
+
color: string;
|
|
33
|
+
title: string;
|
|
34
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
35
|
+
export default TakeoffRocketIconOutlinedSharp;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
// AUTO-GENERATED — DO NOT EDIT
|
|
2
|
+
import { defineComponent, h } from 'vue';
|
|
3
|
+
export const TakeoffRocketIconOutlinedSharp = defineComponent({
|
|
4
|
+
name: 'TakeoffRocketIconOutlinedSharp',
|
|
5
|
+
inheritAttrs: false,
|
|
6
|
+
props: {
|
|
7
|
+
size: {
|
|
8
|
+
type: [Number, String],
|
|
9
|
+
default: 24,
|
|
10
|
+
},
|
|
11
|
+
color: {
|
|
12
|
+
type: String,
|
|
13
|
+
default: 'currentColor',
|
|
14
|
+
},
|
|
15
|
+
title: {
|
|
16
|
+
type: String,
|
|
17
|
+
default: undefined,
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
setup(props, { attrs }) {
|
|
21
|
+
return () => h('svg', {
|
|
22
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
23
|
+
viewBox: '0 0 24 24',
|
|
24
|
+
width: props.size,
|
|
25
|
+
height: props.size,
|
|
26
|
+
style: { color: props.color },
|
|
27
|
+
role: props.title != null ? 'img' : undefined,
|
|
28
|
+
'aria-label': props.title,
|
|
29
|
+
'aria-hidden': props.title != null ? undefined : 'true',
|
|
30
|
+
...attrs,
|
|
31
|
+
innerHTML: '<path fill="currentColor" d="M12 2c2.5 1.5 4.5 4.5 4.5 8 0 1.6-.4 3.1-1 4.4l-1.3-.8c.5-1.1.8-2.3.8-3.6 0-2.6-1.3-4.9-3-6.2-1.7 1.3-3 3.6-3 6.2 0 1.3.3 2.5.8 3.6l-1.3.8c-.6-1.3-1-2.8-1-4.4 0-3.5 2-6.5 4.5-8m0 7.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m-3.5 5.7 1.5 1v3.3L7.5 21v-4c0-.7.4-1.4 1-1.8m7 0c.6.4 1 1.1 1 1.8v4L14 19.5v-3.3z"/>',
|
|
32
|
+
});
|
|
33
|
+
},
|
|
34
|
+
});
|
|
35
|
+
export default TakeoffRocketIconOutlinedSharp;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { type PropType } from 'vue';
|
|
2
|
+
export declare const TakeoffRocketIconOutlinedTk: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
size: {
|
|
4
|
+
type: PropType<number | string>;
|
|
5
|
+
default: number;
|
|
6
|
+
};
|
|
7
|
+
color: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
title: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: undefined;
|
|
14
|
+
};
|
|
15
|
+
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
|
+
size: {
|
|
19
|
+
type: PropType<number | string>;
|
|
20
|
+
default: number;
|
|
21
|
+
};
|
|
22
|
+
color: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
title: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: undefined;
|
|
29
|
+
};
|
|
30
|
+
}>> & Readonly<{}>, {
|
|
31
|
+
size: string | number;
|
|
32
|
+
color: string;
|
|
33
|
+
title: string;
|
|
34
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
35
|
+
export default TakeoffRocketIconOutlinedTk;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
// AUTO-GENERATED — DO NOT EDIT
|
|
2
|
+
import { defineComponent, h } from 'vue';
|
|
3
|
+
export const TakeoffRocketIconOutlinedTk = defineComponent({
|
|
4
|
+
name: 'TakeoffRocketIconOutlinedTk',
|
|
5
|
+
inheritAttrs: false,
|
|
6
|
+
props: {
|
|
7
|
+
size: {
|
|
8
|
+
type: [Number, String],
|
|
9
|
+
default: 24,
|
|
10
|
+
},
|
|
11
|
+
color: {
|
|
12
|
+
type: String,
|
|
13
|
+
default: 'currentColor',
|
|
14
|
+
},
|
|
15
|
+
title: {
|
|
16
|
+
type: String,
|
|
17
|
+
default: undefined,
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
setup(props, { attrs }) {
|
|
21
|
+
return () => h('svg', {
|
|
22
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
23
|
+
viewBox: '0 0 24 24',
|
|
24
|
+
width: props.size,
|
|
25
|
+
height: props.size,
|
|
26
|
+
style: { color: props.color },
|
|
27
|
+
role: props.title != null ? 'img' : undefined,
|
|
28
|
+
'aria-label': props.title,
|
|
29
|
+
'aria-hidden': props.title != null ? undefined : 'true',
|
|
30
|
+
...attrs,
|
|
31
|
+
innerHTML: '<path fill="currentColor" d="M12 2c2.5 1.5 4.5 4.5 4.5 8 0 1.6-.4 3.1-1 4.4l-1.3-.8c.5-1.1.8-2.3.8-3.6 0-2.6-1.3-4.9-3-6.2-1.7 1.3-3 3.6-3 6.2 0 1.3.3 2.5.8 3.6l-1.3.8c-.6-1.3-1-2.8-1-4.4 0-3.5 2-6.5 4.5-8m0 7.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m-3.5 5.7 1.5 1v3.3L7.5 21v-4c0-.7.4-1.4 1-1.8m7 0c.6.4 1 1.1 1 1.8v4L14 19.5v-3.3z"/>',
|
|
32
|
+
});
|
|
33
|
+
},
|
|
34
|
+
});
|
|
35
|
+
export default TakeoffRocketIconOutlinedTk;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { TakeoffRocketIconFilledBevel } from './TakeoffRocketIconFilledBevel.js';
|
|
2
|
+
export { TakeoffRocketIconFilledRounded } from './TakeoffRocketIconFilledRounded.js';
|
|
3
|
+
export { TakeoffRocketIconFilledSharp } from './TakeoffRocketIconFilledSharp.js';
|
|
4
|
+
export { TakeoffRocketIconFilledTk } from './TakeoffRocketIconFilledTk.js';
|
|
5
|
+
export { TakeoffRocketIconOutlinedBevel } from './TakeoffRocketIconOutlinedBevel.js';
|
|
6
|
+
export { TakeoffRocketIconOutlinedRounded } from './TakeoffRocketIconOutlinedRounded.js';
|
|
7
|
+
export { TakeoffRocketIconOutlinedSharp } from './TakeoffRocketIconOutlinedSharp.js';
|
|
8
|
+
export { TakeoffRocketIconOutlinedTk } from './TakeoffRocketIconOutlinedTk.js';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// AUTO-GENERATED — DO NOT EDIT
|
|
2
|
+
export { TakeoffRocketIconFilledBevel } from './TakeoffRocketIconFilledBevel.js';
|
|
3
|
+
export { TakeoffRocketIconFilledRounded } from './TakeoffRocketIconFilledRounded.js';
|
|
4
|
+
export { TakeoffRocketIconFilledSharp } from './TakeoffRocketIconFilledSharp.js';
|
|
5
|
+
export { TakeoffRocketIconFilledTk } from './TakeoffRocketIconFilledTk.js';
|
|
6
|
+
export { TakeoffRocketIconOutlinedBevel } from './TakeoffRocketIconOutlinedBevel.js';
|
|
7
|
+
export { TakeoffRocketIconOutlinedRounded } from './TakeoffRocketIconOutlinedRounded.js';
|
|
8
|
+
export { TakeoffRocketIconOutlinedSharp } from './TakeoffRocketIconOutlinedSharp.js';
|
|
9
|
+
export { TakeoffRocketIconOutlinedTk } from './TakeoffRocketIconOutlinedTk.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@takeoff-icons/vue",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Typed Vue 3 components for the takeoff-icons icon library.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -40,11 +40,11 @@
|
|
|
40
40
|
"typescript": "^5.7.3",
|
|
41
41
|
"vue": "^3.5.13",
|
|
42
42
|
"vue-tsc": "^2.1.10",
|
|
43
|
-
"@takeoff-icons/core": "0.1.
|
|
43
|
+
"@takeoff-icons/core": "0.1.1"
|
|
44
44
|
},
|
|
45
45
|
"sideEffects": false,
|
|
46
46
|
"scripts": {
|
|
47
|
-
"build": "rimraf dist && vue-tsc -p tsconfig.json",
|
|
47
|
+
"build": "rimraf dist && NODE_OPTIONS=--max-old-space-size=8192 vue-tsc -p tsconfig.json",
|
|
48
48
|
"clean": "rimraf dist",
|
|
49
49
|
"lint": "eslint . --ext .ts,.tsx,.js,.jsx,.mjs,.cjs"
|
|
50
50
|
}
|