Skip to content

Instantly share code, notes, and snippets.

@whmountains
whmountains / Image.js
Last active September 5, 2017 15:18
React Responsive Image Component for Gatsby
import React from 'react'
import styled from 'styled-components'
import autoBind from 'auto-bind'
const Container = styled.div`
position: relative;
overflow: hidden;
background-color: #f6f6f6;
${p => `width: ` + p.width + ';'}
${p => `height: ` + p.height + ';'}