<ui-quote>

Technology should serve people, not the other way around.
— CEO, Tekki AS
<template is="ui-quote" text="string" author="string">
  <div class="ui-quote">
    <blockquote class="ui-quote-content">
      <div if="props.text" class="ui-quote-text">{{props.text}}</div>
      <div if="props.author" class="ui-quote-author">
        {{props.author |> esc}}
      </div>
    </blockquote>
  </div>
</template>