Skip to content

Instantly share code, notes, and snippets.

@cybear
Created May 6, 2019 18:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cybear/f0e45d3aeaf2ca93a316b6bba16bfce8 to your computer and use it in GitHub Desktop.
Save cybear/f0e45d3aeaf2ca93a316b6bba16bfce8 to your computer and use it in GitHub Desktop.
SVG image placeholder with correct dimensions and background color
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