--- import { Icon } from "astro-icon/components"; const { props } = Astro.props; const textColor = props.textColor || '' const imageUrl = props.image || '' //const bgClass = props.type === 'text'? `bg-[${props.bgColor}]` : `bg-[url(${props.image})] bg-cover` --- {props.type !== 'imgText' && (
{ props.type === 'text' && (
)} { props.type === 'image' && (
)}
)} { props.type === 'imgText' && (

{props.text}

)}