component SplitHero { props { eyebrow = "" title = "A better digital experience" highlight = "" description = "" primaryLabel = "" primaryHref = "" primaryIcon = "" secondaryLabel = "" secondaryHref = "" secondaryIcon = "" visualPosition = "right" reverse = false ratio = "balanced" size = "default" color = "primary" variant = "default" trustItems = [] class = "" } view {
{#if eyebrow}
{eyebrow}
{/if}

{title} {#if highlight} {highlight} {/if}

{#if description}

{description}

{/if} {#if trustItems.length > 0}
{#each trustItems as item} {item.label || item.title || item} {/each}
{/if}
} }