mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 16:22:16 +01:00
35 lines
1.1 KiB
Vue
35 lines
1.1 KiB
Vue
<script setup lang="ts">
|
|
import type { HtmlButtonType } from '@/types/dom';
|
|
import { twMerge } from 'tailwind-merge';
|
|
import { type Component } from 'vue';
|
|
|
|
const props = withDefaults(
|
|
defineProps<{
|
|
type: HtmlButtonType;
|
|
icon?: Component;
|
|
}>(),
|
|
{
|
|
type: 'button',
|
|
}
|
|
);
|
|
</script>
|
|
|
|
<template>
|
|
<button
|
|
:type="type"
|
|
class="bg-button-secondary-background border border-button-secondary-border hover:bg-button-secondary-background-hover shadow-sm transition text-white text-sm px-3 py-2 rounded-lg font-semibold inline-flex items-center space-x-1.5 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2 disabled:opacity-25 ease-in-out">
|
|
<span
|
|
:class="
|
|
twMerge('flex items-center ', props.icon ? 'space-x-1.5' : '')
|
|
">
|
|
<component
|
|
v-if="props.icon"
|
|
:is="props.icon"
|
|
class="w-5 h-5 -ml-1"></component>
|
|
<span>
|
|
<slot />
|
|
</span>
|
|
</span>
|
|
</button>
|
|
</template>
|