export default class Column extends Component {

  createClassName() {
    return [styles.column, styles[this.props.size], styles[this.props.offset], this.props.className].join(' ').trim();
  }