94 lines
1.8 KiB
Vue
94 lines
1.8 KiB
Vue
<template>
|
|
<SmartLink
|
|
:to="`${/^\/(?!\/).*$/.test(to) ? localePath(to) : to}`"
|
|
:exact="exact"
|
|
:blank="blank"
|
|
class="
|
|
inline-flex
|
|
px-4
|
|
py-2
|
|
text-sm
|
|
transition
|
|
rounded-lg
|
|
focus:bg-primaryDark focus:text-secondaryDark
|
|
hover:bg-primaryDark hover:text-secondaryDark
|
|
focus:outline-none
|
|
"
|
|
:class="[
|
|
{ 'opacity-50 cursor-not-allowed': disabled },
|
|
{ 'flex-1': label },
|
|
{ 'flex-row-reverse justify-end': reverse },
|
|
]"
|
|
:disabled="disabled"
|
|
>
|
|
<i
|
|
v-if="icon"
|
|
:class="label ? (reverse ? 'ml-4 opacity-75' : 'mr-4 opacity-75') : ''"
|
|
class="material-icons"
|
|
>
|
|
{{ icon }}
|
|
</i>
|
|
<SmartIcon
|
|
v-if="svg"
|
|
:name="svg"
|
|
:class="label ? (reverse ? 'ml-4 opacity-75' : 'mr-4 opacity-75') : ''"
|
|
class="svg-icons"
|
|
/>
|
|
<div class="inline-flex items-start" :class="{ 'flex-col': description }">
|
|
<div class="font-semibold">
|
|
{{ label }}
|
|
</div>
|
|
<p v-if="description" class="my-2 text-xs text-left text-secondaryLight">
|
|
{{ description }}
|
|
</p>
|
|
</div>
|
|
</SmartLink>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
to: {
|
|
type: String,
|
|
default: "",
|
|
},
|
|
exact: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
blank: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
label: {
|
|
type: String,
|
|
default: "",
|
|
},
|
|
description: {
|
|
type: String,
|
|
default: "",
|
|
},
|
|
icon: {
|
|
type: String,
|
|
default: "",
|
|
},
|
|
svg: {
|
|
type: String,
|
|
default: "",
|
|
},
|
|
disabled: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
infoIcon: {
|
|
type: String,
|
|
default: "",
|
|
},
|
|
reverse: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
},
|
|
}
|
|
</script>
|