--- import { Icon } from '@astrojs/starlight/components'; interface Props { name: string; twitter?: string; linkedin?: string; github?: string; } const { name, twitter, linkedin, github } = Astro.props; ---
Created by {name} {twitter && } {linkedin && } {github && }