Files
ntspi-app/resources/js/Components/LegacyComponents/AdminFormButton.vue
T
2024-09-19 16:06:49 +05:00

20 lines
714 B
Vue

<script>
export default {
name: "AdminFormButton",
inheritAttrs: false,
props: [
'title',
]
}
</script>
<template>
<button class="text-white inline-flex items-center bg-blue-700 hover:bg-primary-800 focus:ring-4 focus:outline-none focus:ring-primary-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center dark:bg-primary-600 dark:hover:bg-primary-700 dark:focus:ring-primary-800">
<svg class="mr-1 -ml-1 w-6 h-6" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M10 5a1 1 0 011 1v3h3a1 1 0 110 2h-3v3a1 1 0 11-2 0v-3H6a1 1 0 110-2h3V6a1 1 0 011-1z" clip-rule="evenodd"></path></svg>
{{ title }}
</button>
</template>
<style scoped>
</style>