diff --git a/src/components/Picture.astro b/src/components/Picture.astro index 8588e8a..cb7c7ba 100644 --- a/src/components/Picture.astro +++ b/src/components/Picture.astro @@ -7,9 +7,10 @@ import type { PictureConfigOptions } from 'astro-imagetools'; interface Props extends PictureConfigOptions { class?: string; noMargin?: boolean; + src: string; } -const { class: className, noMargin, ...props } = Astro.props; +const { class: className, noMargin, src, ...props } = Astro.props; const classes = cx( 'image-shadow block h-auto w-full rounded-1 border-1 border-solid border-black/[0.1] bg-black/[0.1] shadow shadow-black/10 mbe-10 mbs-0 dark:border-white/[0.1] dark:opacity-[0.87] dark:shadow-white/10', @@ -19,5 +20,11 @@ const classes = cx( ---