finishing up adding all the icons from Feather icons
This commit is contained in:
parent
bdf5121d71
commit
427d4e2500
41
src/resources/js/Icons/Airplay.vue
Normal file
41
src/resources/js/Icons/Airplay.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"></path>
|
||||
<polygon points="12 15 17 21 7 21 12 15"></polygon>
|
||||
</svg>
|
||||
</template>
|
42
src/resources/js/Icons/AlertCircle.vue
Normal file
42
src/resources/js/Icons/AlertCircle.vue
Normal file
@ -0,0 +1,42 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<circle cx="12" cy="12" r="10"></circle>
|
||||
<line x1="12" y1="8" x2="12" y2="12"></line>
|
||||
<line x1="12" y1="16" x2="12.01" y2="16"></line>
|
||||
</svg>
|
||||
</template>
|
43
src/resources/js/Icons/AlignCenter.vue
Normal file
43
src/resources/js/Icons/AlignCenter.vue
Normal file
@ -0,0 +1,43 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<line x1="18" y1="10" x2="6" y2="10"></line>
|
||||
<line x1="21" y1="6" x2="3" y2="6"></line>
|
||||
<line x1="21" y1="14" x2="3" y2="14"></line>
|
||||
<line x1="18" y1="18" x2="6" y2="18"></line>
|
||||
</svg>
|
||||
</template>
|
43
src/resources/js/Icons/AlignJustify.vue
Normal file
43
src/resources/js/Icons/AlignJustify.vue
Normal file
@ -0,0 +1,43 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<line x1="21" y1="10" x2="3" y2="10"></line>
|
||||
<line x1="21" y1="6" x2="3" y2="6"></line>
|
||||
<line x1="21" y1="14" x2="3" y2="14"></line>
|
||||
<line x1="21" y1="18" x2="3" y2="18"></line>
|
||||
</svg>
|
||||
</template>
|
43
src/resources/js/Icons/AlignLeft.vue
Normal file
43
src/resources/js/Icons/AlignLeft.vue
Normal file
@ -0,0 +1,43 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<line x1="17" y1="10" x2="3" y2="10"></line>
|
||||
<line x1="21" y1="6" x2="3" y2="6"></line>
|
||||
<line x1="21" y1="14" x2="3" y2="14"></line>
|
||||
<line x1="17" y1="18" x2="3" y2="18"></line>
|
||||
</svg>
|
||||
</template>
|
43
src/resources/js/Icons/AlignRight.vue
Normal file
43
src/resources/js/Icons/AlignRight.vue
Normal file
@ -0,0 +1,43 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<line x1="21" y1="10" x2="7" y2="10"></line>
|
||||
<line x1="21" y1="6" x2="3" y2="6"></line>
|
||||
<line x1="21" y1="14" x2="3" y2="14"></line>
|
||||
<line x1="21" y1="18" x2="7" y2="18"></line>
|
||||
</svg>
|
||||
</template>
|
42
src/resources/js/Icons/Anchor.vue
Normal file
42
src/resources/js/Icons/Anchor.vue
Normal file
@ -0,0 +1,42 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<circle cx="12" cy="5" r="3"></circle>
|
||||
<line x1="12" y1="22" x2="12" y2="8"></line>
|
||||
<path d="M5 12H2a10 10 0 0 0 20 0h-3"></path>
|
||||
</svg>
|
||||
</template>
|
46
src/resources/js/Icons/Aperture.vue
Normal file
46
src/resources/js/Icons/Aperture.vue
Normal file
@ -0,0 +1,46 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<circle cx="12" cy="12" r="10"></circle>
|
||||
<line x1="14.31" y1="8" x2="20.05" y2="17.94"></line>
|
||||
<line x1="9.69" y1="8" x2="21.17" y2="8"></line>
|
||||
<line x1="7.38" y1="12" x2="13.12" y2="2.06"></line>
|
||||
<line x1="9.69" y1="16" x2="3.95" y2="6.06"></line>
|
||||
<line x1="14.31" y1="16" x2="2.83" y2="16"></line>
|
||||
<line x1="16.62" y1="12" x2="10.88" y2="21.94"></line>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/ArrowDown.vue
Normal file
41
src/resources/js/Icons/ArrowDown.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<line x1="12" y1="5" x2="12" y2="19"></line>
|
||||
<polyline points="19 12 12 19 5 12"></polyline>
|
||||
</svg>
|
||||
</template>
|
42
src/resources/js/Icons/ArrowDownCircle.vue
Normal file
42
src/resources/js/Icons/ArrowDownCircle.vue
Normal file
@ -0,0 +1,42 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<circle cx="12" cy="12" r="10"></circle>
|
||||
<polyline points="8 12 12 16 16 12"></polyline>
|
||||
<line x1="12" y1="8" x2="12" y2="16"></line>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/ArrowDownLeft.vue
Normal file
41
src/resources/js/Icons/ArrowDownLeft.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<line x1="17" y1="7" x2="7" y2="17"></line>
|
||||
<polyline points="17 17 7 17 7 7"></polyline>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/ArrowDownRight.vue
Normal file
41
src/resources/js/Icons/ArrowDownRight.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<line x1="7" y1="7" x2="17" y2="17"></line>
|
||||
<polyline points="17 7 17 17 7 17"></polyline>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/ArrowLeft.vue
Normal file
41
src/resources/js/Icons/ArrowLeft.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<line x1="19" y1="12" x2="5" y2="12"></line>
|
||||
<polyline points="12 19 5 12 12 5"></polyline>
|
||||
</svg>
|
||||
</template>
|
42
src/resources/js/Icons/ArrowLeftCircle.vue
Normal file
42
src/resources/js/Icons/ArrowLeftCircle.vue
Normal file
@ -0,0 +1,42 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<circle cx="12" cy="12" r="10"></circle>
|
||||
<polyline points="12 8 8 12 12 16"></polyline>
|
||||
<line x1="16" y1="12" x2="8" y2="12"></line>
|
||||
</svg>
|
||||
</template>
|
42
src/resources/js/Icons/ArrowRightCircle.vue
Normal file
42
src/resources/js/Icons/ArrowRightCircle.vue
Normal file
@ -0,0 +1,42 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<circle cx="12" cy="12" r="10"></circle>
|
||||
<polyline points="12 16 16 12 12 8"></polyline>
|
||||
<line x1="8" y1="12" x2="16" y2="12"></line>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/ArrowUp.vue
Normal file
41
src/resources/js/Icons/ArrowUp.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<line x1="12" y1="19" x2="12" y2="5"></line>
|
||||
<polyline points="5 12 12 5 19 12"></polyline>
|
||||
</svg>
|
||||
</template>
|
42
src/resources/js/Icons/ArrowUpCircle.vue
Normal file
42
src/resources/js/Icons/ArrowUpCircle.vue
Normal file
@ -0,0 +1,42 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<circle cx="12" cy="12" r="10"></circle>
|
||||
<polyline points="16 12 12 8 8 12"></polyline>
|
||||
<line x1="12" y1="16" x2="12" y2="8"></line>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/ArrowUpLeft.vue
Normal file
41
src/resources/js/Icons/ArrowUpLeft.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<line x1="17" y1="17" x2="7" y2="7"></line>
|
||||
<polyline points="7 17 7 7 17 7"></polyline>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/ArrowUpRight.vue
Normal file
41
src/resources/js/Icons/ArrowUpRight.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<line x1="7" y1="17" x2="17" y2="7"></line>
|
||||
<polyline points="7 7 17 7 17 17"></polyline>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/AtSign.vue
Normal file
41
src/resources/js/Icons/AtSign.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<circle cx="12" cy="12" r="4"></circle>
|
||||
<path d="M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94"></path>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/Award.vue
Normal file
41
src/resources/js/Icons/Award.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<circle cx="12" cy="8" r="7"></circle>
|
||||
<polyline points="8.21 13.89 7 23 12 20 17 23 15.79 13.88"></polyline>
|
||||
</svg>
|
||||
</template>
|
42
src/resources/js/Icons/BarChart.vue
Normal file
42
src/resources/js/Icons/BarChart.vue
Normal file
@ -0,0 +1,42 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<line x1="12" y1="20" x2="12" y2="10"></line>
|
||||
<line x1="18" y1="20" x2="18" y2="4"></line>
|
||||
<line x1="6" y1="20" x2="6" y2="16"></line>
|
||||
</svg>
|
||||
</template>
|
42
src/resources/js/Icons/BarChart2.vue
Normal file
42
src/resources/js/Icons/BarChart2.vue
Normal file
@ -0,0 +1,42 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<line x1="18" y1="20" x2="18" y2="10"></line>
|
||||
<line x1="12" y1="20" x2="12" y2="4"></line>
|
||||
<line x1="6" y1="20" x2="6" y2="14"></line>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/Battery.vue
Normal file
41
src/resources/js/Icons/Battery.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<rect x="1" y="6" width="18" height="12" rx="2" ry="2"></rect>
|
||||
<line x1="23" y1="13" x2="23" y2="11"></line>
|
||||
</svg>
|
||||
</template>
|
42
src/resources/js/Icons/BatteryCharging.vue
Normal file
42
src/resources/js/Icons/BatteryCharging.vue
Normal file
@ -0,0 +1,42 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M5 18H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.19M15 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.19"></path>
|
||||
<line x1="23" y1="13" x2="23" y2="11"></line>
|
||||
<polyline points="11 6 7 12 13 12 9 18"></polyline>
|
||||
</svg>
|
||||
</template>
|
40
src/resources/js/Icons/Bluetooth.vue
Normal file
40
src/resources/js/Icons/Bluetooth.vue
Normal file
@ -0,0 +1,40 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<polyline points="6.5 6.5 17.5 17.5 12 23 12 1 17.5 6.5 6.5 17.5"></polyline>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/Bold.vue
Normal file
41
src/resources/js/Icons/Bold.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M6 4h8a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"></path>
|
||||
<path d="M6 12h9a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"></path>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/Book.vue
Normal file
41
src/resources/js/Icons/Book.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"></path>
|
||||
<path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"></path>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/BookOpen.vue
Normal file
41
src/resources/js/Icons/BookOpen.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"></path>
|
||||
<path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"></path>
|
||||
</svg>
|
||||
</template>
|
42
src/resources/js/Icons/Box.vue
Normal file
42
src/resources/js/Icons/Box.vue
Normal file
@ -0,0 +1,42 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path>
|
||||
<polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline>
|
||||
<line x1="12" y1="22.08" x2="12" y2="12"></line>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/Briefcase.vue
Normal file
41
src/resources/js/Icons/Briefcase.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<rect x="2" y="7" width="20" height="14" rx="2" ry="2"></rect>
|
||||
<path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"></path>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/Camera.vue
Normal file
41
src/resources/js/Icons/Camera.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"></path>
|
||||
<circle cx="12" cy="13" r="4"></circle>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/CameraOff.vue
Normal file
41
src/resources/js/Icons/CameraOff.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<line x1="1" y1="1" x2="23" y2="23"></line>
|
||||
<path d="M21 21H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3m3-3h6l2 3h4a2 2 0 0 1 2 2v9.34m-7.72-2.06a4 4 0 1 1-5.56-5.56"></path>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/Cast.vue
Normal file
41
src/resources/js/Icons/Cast.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M2 16.1A5 5 0 0 1 5.9 20M2 12.05A9 9 0 0 1 9.95 20M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6"></path>
|
||||
<line x1="2" y1="20" x2="2.01" y2="20"></line>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/CheckSquare.vue
Normal file
41
src/resources/js/Icons/CheckSquare.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<polyline points="9 11 12 14 22 4"></polyline>
|
||||
<path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"></path>
|
||||
</svg>
|
||||
</template>
|
40
src/resources/js/Icons/ChevronLeft.vue
Normal file
40
src/resources/js/Icons/ChevronLeft.vue
Normal file
@ -0,0 +1,40 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<polyline points="15 18 9 12 15 6"></polyline>
|
||||
</svg>
|
||||
</template>
|
40
src/resources/js/Icons/ChevronRight.vue
Normal file
40
src/resources/js/Icons/ChevronRight.vue
Normal file
@ -0,0 +1,40 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<polyline points="9 18 15 12 9 6"></polyline>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/ChevronsDown.vue
Normal file
41
src/resources/js/Icons/ChevronsDown.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<polyline points="7 13 12 18 17 13"></polyline>
|
||||
<polyline points="7 6 12 11 17 6"></polyline>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/ChevronsLeft.vue
Normal file
41
src/resources/js/Icons/ChevronsLeft.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<polyline points="11 17 6 12 11 7"></polyline>
|
||||
<polyline points="18 17 13 12 18 7"></polyline>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/ChevronsRight.vue
Normal file
41
src/resources/js/Icons/ChevronsRight.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<polyline points="13 17 18 12 13 7"></polyline>
|
||||
<polyline points="6 17 11 12 6 7"></polyline>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/ChevronsUp.vue
Normal file
41
src/resources/js/Icons/ChevronsUp.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<polyline points="17 11 12 6 7 11"></polyline>
|
||||
<polyline points="17 18 12 13 7 18"></polyline>
|
||||
</svg>
|
||||
</template>
|
44
src/resources/js/Icons/Chrome.vue
Normal file
44
src/resources/js/Icons/Chrome.vue
Normal file
@ -0,0 +1,44 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<circle cx="12" cy="12" r="10"></circle>
|
||||
<circle cx="12" cy="12" r="4"></circle>
|
||||
<line x1="21.17" y1="8" x2="12" y2="8"></line>
|
||||
<line x1="3.95" y1="6.06" x2="8.54" y2="14"></line>
|
||||
<line x1="10.88" y1="21.94" x2="15.46" y2="14"></line>
|
||||
</svg>
|
||||
</template>
|
46
src/resources/js/Icons/CloudDrizzle.vue
Normal file
46
src/resources/js/Icons/CloudDrizzle.vue
Normal file
@ -0,0 +1,46 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<line x1="8" y1="19" x2="8" y2="21"></line>
|
||||
<line x1="8" y1="13" x2="8" y2="15"></line>
|
||||
<line x1="16" y1="19" x2="16" y2="21"></line>
|
||||
<line x1="16" y1="13" x2="16" y2="15"></line>
|
||||
<line x1="12" y1="21" x2="12" y2="23"></line>
|
||||
<line x1="12" y1="15" x2="12" y2="17"></line>
|
||||
<path d="M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"></path>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/CloudLightning.vue
Normal file
41
src/resources/js/Icons/CloudLightning.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M19 16.9A5 5 0 0 0 18 7h-1.26a8 8 0 1 0-11.62 9"></path>
|
||||
<polyline points="13 11 9 17 15 17 11 23"></polyline>
|
||||
</svg>
|
||||
</template>
|
43
src/resources/js/Icons/CloudRain.vue
Normal file
43
src/resources/js/Icons/CloudRain.vue
Normal file
@ -0,0 +1,43 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<line x1="16" y1="13" x2="16" y2="21"></line>
|
||||
<line x1="8" y1="13" x2="8" y2="21"></line>
|
||||
<line x1="12" y1="15" x2="12" y2="23"></line>
|
||||
<path d="M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"></path>
|
||||
</svg>
|
||||
</template>
|
46
src/resources/js/Icons/CloudSnow.vue
Normal file
46
src/resources/js/Icons/CloudSnow.vue
Normal file
@ -0,0 +1,46 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M20 17.58A5 5 0 0 0 18 8h-1.26A8 8 0 1 0 4 16.25"></path>
|
||||
<line x1="8" y1="16" x2="8.01" y2="16"></line>
|
||||
<line x1="8" y1="20" x2="8.01" y2="20"></line>
|
||||
<line x1="12" y1="18" x2="12.01" y2="18"></line>
|
||||
<line x1="12" y1="22" x2="12.01" y2="22"></line>
|
||||
<line x1="16" y1="16" x2="16.01" y2="16"></line>
|
||||
<line x1="16" y1="20" x2="16.01" y2="20"></line>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/Code.vue
Normal file
41
src/resources/js/Icons/Code.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<polyline points="16 18 22 12 16 6"></polyline>
|
||||
<polyline points="8 6 2 12 8 18"></polyline>
|
||||
</svg>
|
||||
</template>
|
44
src/resources/js/Icons/Codepen.vue
Normal file
44
src/resources/js/Icons/Codepen.vue
Normal file
@ -0,0 +1,44 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<polygon points="12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"></polygon>
|
||||
<line x1="12" y1="22" x2="12" y2="15.5"></line>
|
||||
<polyline points="22 8.5 12 15.5 2 8.5"></polyline>
|
||||
<polyline points="2 15.5 12 8.5 22 15.5"></polyline>
|
||||
<line x1="12" y1="2" x2="12" y2="8.5"></line>
|
||||
</svg>
|
||||
</template>
|
45
src/resources/js/Icons/Codesandbox.vue
Normal file
45
src/resources/js/Icons/Codesandbox.vue
Normal file
@ -0,0 +1,45 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path>
|
||||
<polyline points="7.5 4.21 12 6.81 16.5 4.21"></polyline>
|
||||
<polyline points="7.5 19.79 7.5 14.6 3 12"></polyline>
|
||||
<polyline points="21 12 16.5 14.6 16.5 19.79"></polyline>
|
||||
<polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline>
|
||||
<line x1="12" y1="22.08" x2="12" y2="12"></line>
|
||||
</svg>
|
||||
</template>
|
44
src/resources/js/Icons/Coffee.vue
Normal file
44
src/resources/js/Icons/Coffee.vue
Normal file
@ -0,0 +1,44 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M18 8h1a4 4 0 0 1 0 8h-1"></path>
|
||||
<path d="M2 8h16v9a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V8z"></path>
|
||||
<line x1="6" y1="1" x2="6" y2="4"></line>
|
||||
<line x1="10" y1="1" x2="10" y2="4"></line>
|
||||
<line x1="14" y1="1" x2="14" y2="4"></line>
|
||||
</svg>
|
||||
</template>
|
40
src/resources/js/Icons/Columns.vue
Normal file
40
src/resources/js/Icons/Columns.vue
Normal file
@ -0,0 +1,40 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M12 3h7a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-7m0-18H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7m0-18v18"></path>
|
||||
</svg>
|
||||
</template>
|
40
src/resources/js/Icons/Command.vue
Normal file
40
src/resources/js/Icons/Command.vue
Normal file
@ -0,0 +1,40 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M18 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3H6a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3V6a3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 3 3 0 0 0-3-3z"></path>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/Compass.vue
Normal file
41
src/resources/js/Icons/Compass.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<circle cx="12" cy="12" r="10"></circle>
|
||||
<polygon points="16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76"></polygon>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/CornerDownLeft.vue
Normal file
41
src/resources/js/Icons/CornerDownLeft.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<polyline points="9 10 4 15 9 20"></polyline>
|
||||
<path d="M20 4v7a4 4 0 0 1-4 4H4"></path>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/CornerDownRight.vue
Normal file
41
src/resources/js/Icons/CornerDownRight.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<polyline points="15 10 20 15 15 20"></polyline>
|
||||
<path d="M4 4v7a4 4 0 0 0 4 4h12"></path>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/CornerLeftDown.vue
Normal file
41
src/resources/js/Icons/CornerLeftDown.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<polyline points="14 15 9 20 4 15"></polyline>
|
||||
<path d="M20 4h-7a4 4 0 0 0-4 4v12"></path>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/CornerLeftUp.vue
Normal file
41
src/resources/js/Icons/CornerLeftUp.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<polyline points="14 9 9 4 4 9"></polyline>
|
||||
<path d="M20 20h-7a4 4 0 0 1-4-4V4"></path>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/CornerRightDown.vue
Normal file
41
src/resources/js/Icons/CornerRightDown.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<polyline points="10 15 15 20 20 15"></polyline>
|
||||
<path d="M4 4h7a4 4 0 0 1 4 4v12"></path>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/CornerRightUp.vue
Normal file
41
src/resources/js/Icons/CornerRightUp.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<polyline points="10 9 15 4 20 9"></polyline>
|
||||
<path d="M4 20h7a4 4 0 0 0 4-4V4"></path>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/CornerUpLeft.vue
Normal file
41
src/resources/js/Icons/CornerUpLeft.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<polyline points="9 14 4 9 9 4"></polyline>
|
||||
<path d="M20 20v-7a4 4 0 0 0-4-4H4"></path>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/CornerUpRight.vue
Normal file
41
src/resources/js/Icons/CornerUpRight.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<polyline points="15 14 20 9 15 4"></polyline>
|
||||
<path d="M4 20v-7a4 4 0 0 1 4-4h12"></path>
|
||||
</svg>
|
||||
</template>
|
49
src/resources/js/Icons/Cpu.vue
Normal file
49
src/resources/js/Icons/Cpu.vue
Normal file
@ -0,0 +1,49 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<rect x="4" y="4" width="16" height="16" rx="2" ry="2"></rect>
|
||||
<rect x="9" y="9" width="6" height="6"></rect>
|
||||
<line x1="9" y1="1" x2="9" y2="4"></line>
|
||||
<line x1="15" y1="1" x2="15" y2="4"></line>
|
||||
<line x1="9" y1="20" x2="9" y2="23"></line>
|
||||
<line x1="15" y1="20" x2="15" y2="23"></line>
|
||||
<line x1="20" y1="9" x2="23" y2="9"></line>
|
||||
<line x1="20" y1="14" x2="23" y2="14"></line>
|
||||
<line x1="1" y1="9" x2="4" y2="9"></line>
|
||||
<line x1="1" y1="14" x2="4" y2="14"></line>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/Crop.vue
Normal file
41
src/resources/js/Icons/Crop.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M6.13 1L6 16a2 2 0 0 0 2 2h15"></path>
|
||||
<path d="M1 6.13L16 6a2 2 0 0 1 2 2v15"></path>
|
||||
</svg>
|
||||
</template>
|
44
src/resources/js/Icons/Crosshair.vue
Normal file
44
src/resources/js/Icons/Crosshair.vue
Normal file
@ -0,0 +1,44 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<circle cx="12" cy="12" r="10"></circle>
|
||||
<line x1="22" y1="12" x2="18" y2="12"></line>
|
||||
<line x1="6" y1="12" x2="2" y2="12"></line>
|
||||
<line x1="12" y1="6" x2="12" y2="2"></line>
|
||||
<line x1="12" y1="22" x2="12" y2="18"></line>
|
||||
</svg>
|
||||
</template>
|
42
src/resources/js/Icons/Delete.vue
Normal file
42
src/resources/js/Icons/Delete.vue
Normal file
@ -0,0 +1,42 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M21 4H8l-7 8 7 8h13a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z"></path>
|
||||
<line x1="18" y1="9" x2="12" y2="15"></line>
|
||||
<line x1="12" y1="9" x2="18" y2="15"></line>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/Disc.vue
Normal file
41
src/resources/js/Icons/Disc.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<circle cx="12" cy="12" r="10"></circle>
|
||||
<circle cx="12" cy="12" r="3"></circle>
|
||||
</svg>
|
||||
</template>
|
42
src/resources/js/Icons/Divide.vue
Normal file
42
src/resources/js/Icons/Divide.vue
Normal file
@ -0,0 +1,42 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<circle cx="12" cy="6" r="2"></circle>
|
||||
<line x1="5" y1="12" x2="19" y2="12"></line>
|
||||
<circle cx="12" cy="18" r="2"></circle>
|
||||
</svg>
|
||||
</template>
|
43
src/resources/js/Icons/DivideCircle.vue
Normal file
43
src/resources/js/Icons/DivideCircle.vue
Normal file
@ -0,0 +1,43 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<line x1="8" y1="12" x2="16" y2="12"></line>
|
||||
<line x1="12" y1="16" x2="12" y2="16"></line>
|
||||
<line x1="12" y1="8" x2="12" y2="8"></line>
|
||||
<circle cx="12" cy="12" r="10"></circle>
|
||||
</svg>
|
||||
</template>
|
43
src/resources/js/Icons/DivideSquare.vue
Normal file
43
src/resources/js/Icons/DivideSquare.vue
Normal file
@ -0,0 +1,43 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect>
|
||||
<line x1="8" y1="12" x2="16" y2="12"></line>
|
||||
<line x1="12" y1="16" x2="12" y2="16"></line>
|
||||
<line x1="12" y1="8" x2="12" y2="8"></line>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/DollarSign.vue
Normal file
41
src/resources/js/Icons/DollarSign.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<line x1="12" y1="1" x2="12" y2="23"></line>
|
||||
<path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"></path>
|
||||
</svg>
|
||||
</template>
|
42
src/resources/js/Icons/Download.vue
Normal file
42
src/resources/js/Icons/Download.vue
Normal file
@ -0,0 +1,42 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path>
|
||||
<polyline points="7 10 12 15 17 10"></polyline>
|
||||
<line x1="12" y1="15" x2="12" y2="3"></line>
|
||||
</svg>
|
||||
</template>
|
@ -35,6 +35,8 @@ const titleString = computed(() => {
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<polyline points="8 17 12 21 16 17"></polyline><line x1="12" y1="12" x2="12" y2="21"></line><path d="M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29"></path>
|
||||
<polyline points="8 17 12 21 16 17"></polyline>
|
||||
<line x1="12" y1="12" x2="12" y2="21"></line>
|
||||
<path d="M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29"></path>
|
||||
</svg>
|
||||
</template>
|
||||
|
41
src/resources/js/Icons/Dribbble.vue
Normal file
41
src/resources/js/Icons/Dribbble.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<circle cx="12" cy="12" r="10"></circle>
|
||||
<path d="M8.56 2.75c4.37 6.03 6.02 9.42 8.03 17.72m2.54-15.38c-3.72 4.35-8.94 5.66-16.88 5.85m19.5 1.9c-3.5-.93-6.63-.82-8.94 0-2.58.92-5.01 2.86-7.44 6.32"></path>
|
||||
</svg>
|
||||
</template>
|
40
src/resources/js/Icons/Droplet.vue
Normal file
40
src/resources/js/Icons/Droplet.vue
Normal file
@ -0,0 +1,40 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z"></path>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/Edit.vue
Normal file
41
src/resources/js/Icons/Edit.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"></path>
|
||||
<path d="M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"></path>
|
||||
</svg>
|
||||
</template>
|
40
src/resources/js/Icons/Edit2.vue
Normal file
40
src/resources/js/Icons/Edit2.vue
Normal file
@ -0,0 +1,40 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M17 3a2.828 2.828 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z"></path>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/Edit3.vue
Normal file
41
src/resources/js/Icons/Edit3.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M12 20h9"></path>
|
||||
<path d="M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z"></path>
|
||||
</svg>
|
||||
</template>
|
@ -35,6 +35,8 @@ const titleString = computed(() => {
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line>
|
||||
<path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path>
|
||||
<polyline points="15 3 21 3 21 9"></polyline>
|
||||
<line x1="10" y1="14" x2="21" y2="3"></line>
|
||||
</svg>
|
||||
</template>
|
||||
|
@ -35,6 +35,7 @@ const titleString = computed(() => {
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"></path><circle cx="12" cy="12" r="3"></circle>
|
||||
<path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"></path>
|
||||
<circle cx="12" cy="12" r="3"></circle>
|
||||
</svg>
|
||||
</template>
|
||||
|
40
src/resources/js/Icons/Facebook.vue
Normal file
40
src/resources/js/Icons/Facebook.vue
Normal file
@ -0,0 +1,40 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"></path>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/FastForward.vue
Normal file
41
src/resources/js/Icons/FastForward.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<polygon points="13 19 22 12 13 5 13 19"></polygon>
|
||||
<polygon points="2 19 11 12 2 5 2 19"></polygon>
|
||||
</svg>
|
||||
</template>
|
42
src/resources/js/Icons/Feather.vue
Normal file
42
src/resources/js/Icons/Feather.vue
Normal file
@ -0,0 +1,42 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M20.24 12.24a6 6 0 0 0-8.49-8.49L5 10.5V19h8.5z"></path>
|
||||
<line x1="16" y1="8" x2="2" y2="22"></line>
|
||||
<line x1="17.5" y1="15" x2="9" y2="15"></line>
|
||||
</svg>
|
||||
</template>
|
44
src/resources/js/Icons/Figma.vue
Normal file
44
src/resources/js/Icons/Figma.vue
Normal file
@ -0,0 +1,44 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5z"></path>
|
||||
<path d="M12 2h3.5a3.5 3.5 0 1 1 0 7H12V2z"></path>
|
||||
<path d="M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0z"></path>
|
||||
<path d="M5 19.5A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0z"></path>
|
||||
<path d="M5 12.5A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5z"></path>
|
||||
</svg>
|
||||
</template>
|
42
src/resources/js/Icons/FileMinus.vue
Normal file
42
src/resources/js/Icons/FileMinus.vue
Normal file
@ -0,0 +1,42 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path>
|
||||
<polyline points="14 2 14 8 20 8"></polyline>
|
||||
<line x1="9" y1="15" x2="15" y2="15"></line>
|
||||
</svg>
|
||||
</template>
|
47
src/resources/js/Icons/Film.vue
Normal file
47
src/resources/js/Icons/Film.vue
Normal file
@ -0,0 +1,47 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<rect x="2" y="2" width="20" height="20" rx="2.18" ry="2.18"></rect>
|
||||
<line x1="7" y1="2" x2="7" y2="22"></line>
|
||||
<line x1="17" y1="2" x2="17" y2="22"></line>
|
||||
<line x1="2" y1="12" x2="22" y2="12"></line>
|
||||
<line x1="2" y1="7" x2="7" y2="7"></line>
|
||||
<line x1="2" y1="17" x2="7" y2="17"></line>
|
||||
<line x1="17" y1="17" x2="22" y2="17"></line>
|
||||
<line x1="17" y1="7" x2="22" y2="7"></line>
|
||||
</svg>
|
||||
</template>
|
@ -35,6 +35,7 @@ const titleString = computed(() => {
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z"></path><line x1="4" y1="22" x2="4" y2="15"></line>
|
||||
<path d="M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z"></path>
|
||||
<line x1="4" y1="22" x2="4" y2="15"></line>
|
||||
</svg>
|
||||
</template>
|
||||
|
40
src/resources/js/Icons/Folder.vue
Normal file
40
src/resources/js/Icons/Folder.vue
Normal file
@ -0,0 +1,40 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path>
|
||||
</svg>
|
||||
</template>
|
41
src/resources/js/Icons/FolderMinus.vue
Normal file
41
src/resources/js/Icons/FolderMinus.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path>
|
||||
<line x1="9" y1="14" x2="15" y2="14"></line>
|
||||
</svg>
|
||||
</template>
|
42
src/resources/js/Icons/FolderPlus.vue
Normal file
42
src/resources/js/Icons/FolderPlus.vue
Normal file
@ -0,0 +1,42 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path>
|
||||
<line x1="12" y1="11" x2="12" y2="17"></line>
|
||||
<line x1="9" y1="14" x2="15" y2="14"></line>
|
||||
</svg>
|
||||
</template>
|
40
src/resources/js/Icons/Framer.vue
Normal file
40
src/resources/js/Icons/Framer.vue
Normal file
@ -0,0 +1,40 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M5 16V9h14V2H5l14 14h-7m-7 0l7 7v-7m-7 0h7"></path>
|
||||
</svg>
|
||||
</template>
|
43
src/resources/js/Icons/Frown.vue
Normal file
43
src/resources/js/Icons/Frown.vue
Normal file
@ -0,0 +1,43 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<circle cx="12" cy="12" r="10"></circle>
|
||||
<path d="M16 16s-1.5-2-4-2-4 2-4 2"></path>
|
||||
<line x1="9" y1="9" x2="9.01" y2="9"></line>
|
||||
<line x1="15" y1="9" x2="15.01" y2="9"></line>
|
||||
</svg>
|
||||
</template>
|
44
src/resources/js/Icons/Gift.vue
Normal file
44
src/resources/js/Icons/Gift.vue
Normal file
@ -0,0 +1,44 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<polyline points="20 12 20 22 4 22 4 12"></polyline>
|
||||
<rect x="2" y="7" width="20" height="5"></rect>
|
||||
<line x1="12" y1="22" x2="12" y2="7"></line>
|
||||
<path d="M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z"></path>
|
||||
<path d="M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z"></path>
|
||||
</svg>
|
||||
</template>
|
43
src/resources/js/Icons/GitBranch.vue
Normal file
43
src/resources/js/Icons/GitBranch.vue
Normal file
@ -0,0 +1,43 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<line x1="6" y1="3" x2="6" y2="15"></line>
|
||||
<circle cx="18" cy="6" r="3"></circle>
|
||||
<circle cx="6" cy="18" r="3"></circle>
|
||||
<path d="M18 9a9 9 0 0 1-9 9"></path>
|
||||
</svg>
|
||||
</template>
|
42
src/resources/js/Icons/GitCommit.vue
Normal file
42
src/resources/js/Icons/GitCommit.vue
Normal file
@ -0,0 +1,42 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<circle cx="12" cy="12" r="4"></circle>
|
||||
<line x1="1.05" y1="12" x2="7" y2="12"></line>
|
||||
<line x1="17.01" y1="12" x2="22.96" y2="12"></line>
|
||||
</svg>
|
||||
</template>
|
42
src/resources/js/Icons/GitMerge.vue
Normal file
42
src/resources/js/Icons/GitMerge.vue
Normal file
@ -0,0 +1,42 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<circle cx="18" cy="18" r="3"></circle>
|
||||
<circle cx="6" cy="6" r="3"></circle>
|
||||
<path d="M6 21V9a9 9 0 0 0 9 9"></path>
|
||||
</svg>
|
||||
</template>
|
40
src/resources/js/Icons/Github.vue
Normal file
40
src/resources/js/Icons/Github.vue
Normal file
@ -0,0 +1,40 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"></path>
|
||||
</svg>
|
||||
</template>
|
40
src/resources/js/Icons/Gitlab.vue
Normal file
40
src/resources/js/Icons/Gitlab.vue
Normal file
@ -0,0 +1,40 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<path d="M22.65 14.39L12 22.13 1.35 14.39a.84.84 0 0 1-.3-.94l1.22-3.78 2.44-7.51A.42.42 0 0 1 4.82 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.49h8.1l2.44-7.51A.42.42 0 0 1 18.6 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.51L23 13.45a.84.84 0 0 1-.35.94z"></path>
|
||||
</svg>
|
||||
</template>
|
42
src/resources/js/Icons/Globe.vue
Normal file
42
src/resources/js/Icons/Globe.vue
Normal file
@ -0,0 +1,42 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<circle cx="12" cy="12" r="10"></circle>
|
||||
<line x1="2" y1="12" x2="22" y2="12"></line>
|
||||
<path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"></path>
|
||||
</svg>
|
||||
</template>
|
43
src/resources/js/Icons/Grid.vue
Normal file
43
src/resources/js/Icons/Grid.vue
Normal file
@ -0,0 +1,43 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<rect x="3" y="3" width="7" height="7"></rect>
|
||||
<rect x="14" y="3" width="7" height="7"></rect>
|
||||
<rect x="14" y="14" width="7" height="7"></rect>
|
||||
<rect x="3" y="14" width="7" height="7"></rect>
|
||||
</svg>
|
||||
</template>
|
43
src/resources/js/Icons/HardDrive.vue
Normal file
43
src/resources/js/Icons/HardDrive.vue
Normal file
@ -0,0 +1,43 @@
|
||||
<script setup>
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
const props = defineProps({
|
||||
title: String,
|
||||
height: Number,
|
||||
width: Number,
|
||||
})
|
||||
|
||||
// variables
|
||||
const heightNumber = ref(24)
|
||||
const widthNumber = ref(24)
|
||||
|
||||
if (!Number.isNaN(props.height) && typeof props.height !== "undefined") {
|
||||
heightNumber.value = Number.parseInt(props.height)
|
||||
} else if (typeof props.height === "undefined" && (!Number.isNaN(props.width) && typeof props.width !== "undefined")) {
|
||||
heightNumber.value = Number.parseInt(props.width)
|
||||
}
|
||||
|
||||
if (!Number.isNaN(props.width) && typeof props.width !== "undefined") {
|
||||
widthNumber.value = Number.parseInt(props.width)
|
||||
} else if (typeof props.width === "undefined" && (!Number.isNaN(props.height) && typeof props.height !== "undefined")) {
|
||||
widthNumber.value = Number.parseInt(props.height)
|
||||
}
|
||||
|
||||
// computed
|
||||
const titleString = computed(() => {
|
||||
if (typeof props.title === "string" && props.title.trim().length > 0) {
|
||||
return props.title.trim()
|
||||
}
|
||||
return ""
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg viewBox="0 0 24 24" :height="heightNumber" :width="widthNumber" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" preserveAspectRatio="xMidYMid meet">
|
||||
<title v-if="titleString.length > 0" v-html="title"></title>
|
||||
<line x1="22" y1="12" x2="2" y2="12"></line>
|
||||
<path d="M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"></path>
|
||||
<line x1="6" y1="16" x2="6.01" y2="16"></line>
|
||||
<line x1="10" y1="16" x2="10.01" y2="16"></line>
|
||||
</svg>
|
||||
</template>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user