import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import css from './IconCheckMark.css';
const SIZE_SMALL = 'small';
const SIZE_BIG = 'big';
const IconCheckmark = props => {
const { rootClassName, className, size } = props;
const classes = classNames(rootClassName || css.root, className);
if (size === SIZE_SMALL) {
return (
);
} else if (size === SIZE_BIG) {
return (
);
}
};
IconCheckmark.defaultProps = {
rootClassName: null,
className: null,
size: 'big',
};
const { string } = PropTypes;
IconCheckmark.propTypes = {
rootClassName: string,
className: string,
size: string,
};
export default IconCheckmark;