--- import { Image } from 'astro:assets'; import { blurStyle } from '@support/image'; const { srcLight, srcDark, alt, style, disableBlur, width, height } = Astro.props; const showBlur = !disableBlur; const blurLight = (srcLight?.fsPath && showBlur) ? await blurStyle(srcLight.fsPath) : {}; const blurDark = (srcDark?.fsPath && showBlur) ? await blurStyle(srcDark.fsPath) : {}; ---