Initial Commit Rework

This commit is contained in:
Qstick 2017-09-03 22:20:56 -04:00
parent 74a4cc048c
commit 95051cbd63
2483 changed files with 101351 additions and 111396 deletions

View file

@ -0,0 +1,45 @@
import PropTypes from 'prop-types';
import React from 'react';
import { kinds } from 'Helpers/Props';
import classNames from 'classnames';
import styles from './Icon.css';
function Icon(props) {
const {
className,
name,
kind,
size,
title
} = props;
return (
<icon
className={classNames(
name,
className,
styles[kind]
)}
title={title}
style={{
fontSize: `${size}px`
}}
>
</icon>
);
}
Icon.propTypes = {
className: PropTypes.string,
name: PropTypes.string.isRequired,
kind: PropTypes.string.isRequired,
size: PropTypes.number.isRequired,
title: PropTypes.string
};
Icon.defaultProps = {
kind: kinds.DEFAULT,
size: 14
};
export default Icon;