Created
May 6, 2019 18:36
-
-
Save cybear/f0e45d3aeaf2ca93a316b6bba16bfce8 to your computer and use it in GitHub Desktop.
SVG image placeholder with correct dimensions and background color
This file contains hidden or 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
const prefix = "data:image/svg+xml,"; | |
export default props => | |
prefix + | |
encodeURI(` | |
<svg | |
xmlns='http://www.w3.org/2000/svg' | |
viewBox='0 0 ${props.width} ${props.height}'> | |
<rect | |
height='100%' | |
style='fill:${props.fill}' | |
width='100%' | |
x='0' | |
y='0' | |
/> | |
</svg>`); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment