--- const { props } = Astro.props; import { Icon } from "astro-icon/components"; import Button from "./ui/Button.astro"; import { getLocalizedRoute } from '@/i18n'; const background = props.bgImage || props.bgColor; const formUrl = `/${Astro.currentLocale}/${getLocalizedRoute("formulario", Astro.currentLocale)}`; ---
{props.hasIcon && (
)}

{props.title}

{props.copy}

{props.hasButton && (
)} {props.hasInput && (
)}