component Blockquote { props { quote = "I just wanted to say that I'm very happy with my purchase so far. The documentation is outstanding - clear and detailed." citation = "" citationTitle = "" citationUrl = "" avatarSrc = "" avatarAlt = "" size = "md" color = "primary" align = "left" variant = "default" quoteMark = true italic = true class = "" } view {
{#if quoteMark} {/if}
{#if quote}

{quote}

{:else} {/if}
{#if citation || citationTitle || avatarSrc}
{#if avatarSrc} {avatarAlt} {/if} {#if citation} {#if citationUrl} {citation} {:else} {citation} {/if} {/if} {#if citationTitle}{citationTitle}{/if}
{/if}
} }