remove empty box css file

This commit is contained in:
Matthew Taylor 2017-12-14 08:54:02 -05:00
parent d87adbeac5
commit b49810a56d
2 changed files with 1 additions and 4 deletions

View file

@ -1,2 +0,0 @@
.box {
}

View file

@ -6,7 +6,6 @@ import classNames from 'classnames';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import React from 'react'; import React from 'react';
import stylePropType from 'react-style-proptype'; import stylePropType from 'react-style-proptype';
import styles from './box.css';
const getRandomColor = (function () { const getRandomColor = (function () {
// In "DEBUG" mode this is used to output a random background color for each // In "DEBUG" mode this is used to output a random background color for each
@ -53,7 +52,7 @@ const Box = props => {
...componentProps ...componentProps
} = props; } = props;
return React.createElement(element, { return React.createElement(element, {
className: classNames(className, styles.box), className: className,
ref: componentRef, ref: componentRef,
style: Object.assign( style: Object.assign(
{ {