Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / src / components / atoms / Row / Row.tsx
Size: Mime:
import React from 'react'
import { RowProps } from './typings'
import { RowWrapper } from './styled'

class Row extends React.PureComponent<RowProps> {
  render() {
    const classList = ['row'].concat(this.props.className)
    const className = classList.join(' ')
    return <RowWrapper className={className}>{this.props.children}</RowWrapper>
  }
}

export { Row }
export default Row