diff --git a/src/components/CloudDivider.astro b/src/components/CloudDivider.astro index b8457d0..fd79613 100644 --- a/src/components/CloudDivider.astro +++ b/src/components/CloudDivider.astro @@ -2,20 +2,20 @@ interface Props { variant?: 'wave' | 'cloud'; flip?: boolean; - fillClass?: string; + fill?: string; } -const { variant = 'wave', flip = false, fillClass = 'fill-hds-bg' } = Astro.props; +const { variant = 'wave', flip = false, fill = 'var(--hds-bg)' } = Astro.props; --- {variant === 'wave' ? (
) : ( )} diff --git a/src/components/Hero.astro b/src/components/Hero.astro index 9a588e6..a950399 100644 --- a/src/components/Hero.astro +++ b/src/components/Hero.astro @@ -100,7 +100,7 @@ const { t, whatsappUrl } = Astro.props; -