component IntegrationCard { props { title = "" description = "" href = "" icon = "icon-[lucide--plug-zap]" class = "" } view {
{#if title}

{title}

{/if}{#if description}

{description}

{/if}{#if href}Open {title}{/if}
} }