Created
November 28, 2021 18:43
-
-
Save kkemple/afe693d3a6816b82e286c745b4efe5ea to your computer and use it in GitHub Desktop.
An image component that supports different images for dark mode.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default function DarkModeImage({ light, dark, alt }) { | |
return ( | |
<picture> | |
<source srcSet={dark} media="(prefers-color-scheme: dark)" /> | |
<img src={light} alt={alt} /> | |
</picture> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment