--- import { getPlaceholder, type PlaceholderOptions } from '@libs/placeholder' type Props = Partial const { options: { background, color, showText, showTitle, text, title }, props, type } = getPlaceholder(Astro.props) --- { type === 'img' ? ( ) : ( {showTitle && {title}} {showText && ( {text} )} ) }