diff --git a/src/lib/components/molecules/ActionCard.svelte b/src/lib/components/molecules/ActionCard.svelte new file mode 100644 index 0000000..225366a --- /dev/null +++ b/src/lib/components/molecules/ActionCard.svelte @@ -0,0 +1,33 @@ + + +
{ + if (e.key === 'Enter' || e.key === ' ') { + e.preventDefault(); + onClick(); + } + }} +> + + {title} + + {#if description} +

{description}

+ {/if} +