Skip to content

Commit

Permalink
update thank you card
Browse files Browse the repository at this point in the history
  • Loading branch information
claireolmstead committed Nov 27, 2024
1 parent 882b256 commit 763efe7
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/components/GetNotified/ContactThankYou.svelte
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
<script lang="ts">
import ThankYouWaves from '$lib/assets/Contact/ThankYouWave.svg';
export let onClick = (e: Event) => {};
export let onClick: (e: MouseEvent) => void;
</script>

<!-- svelte-ignore a11y_click_events_have_key_events -->
<!-- svelte-ignore a11y_no_static_element_interactions -->
<div class="flex cursor-pointer items-center justify-center" onclick={onClick}>
<button class="flex cursor-pointer items-center justify-center" onclick={onClick}>
<img src={ThankYouWaves} alt="Frequency waves with 'Thank you!' caption" />
</div>
</button>

0 comments on commit 763efe7

Please sign in to comment.