Files
housesof/apps/website/src/components/atoms/BoxCTA.svelte
2023-02-10 17:28:54 +01:00

22 lines
435 B
Svelte

<style lang="scss">
@import "../../style/atoms/box-cta";
</style>
<script lang="ts">
import Icon from '$components/atoms/Icon.svelte'
export let icon: string
export let alt: string
export let label: string
export let url: string
</script>
<a href={url} class="box-cta">
<div class="icon">
<Icon icon={icon} label={alt} />
</div>
<span class="text-label">
{label}
</span>
</a>