29 lines
761 B
HTML
29 lines
761 B
HTML
<script props>
|
|
module.exports = {
|
|
align: {
|
|
left: 'text-left',
|
|
center: 'text-center',
|
|
right: 'text-right',
|
|
}[props.align],
|
|
href: props.href,
|
|
msoPt: props['mso-pt'] || '16px',
|
|
msoPb: props['mso-pb'] || '30px',
|
|
}
|
|
</script>
|
|
|
|
<div class="{{ align }}">
|
|
<a
|
|
attributes
|
|
href="{{ href }}"
|
|
class="inline-block py-4 px-6 text-base leading-none font-semibold rounded text-slate-50 bg-indigo-700 [text-decoration:none]"
|
|
>
|
|
<outlook>
|
|
<i class="mso-font-width-[150%]" style="mso-text-raise: {{ msoPb }};" hidden> </i>
|
|
</outlook>
|
|
<span style="mso-text-raise: {{ msoPt }}"><content /></span>
|
|
<outlook>
|
|
<i class="mso-font-width-[150%]" hidden> ​</i>
|
|
</outlook>
|
|
</a>
|
|
</div>
|