All files / components/tabs/header/slide index.js

0% Statements 0/12
0% Branches 0/4
0% Functions 0/2
0% Lines 0/5
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17                                 
import React from 'react'
import PropTypes from 'prop-types'
 
const Slide = ({ left, width }) => (
  <div
    className='slide'
    style={{ left, width }}
  />
)
 
Slide.propTypes = {
  left: PropTypes.string.isRequired,
  width: PropTypes.string.isRequired
}
 
export default Slide