Spaces:
Running
Running
File size: 1,269 Bytes
f2bee8a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
import classNames from 'classnames';
import PropTypes from 'prop-types';
import React from 'react';
import styles from './button.css';
const ButtonComponent = ({
className,
disabled,
iconClassName,
iconSrc,
iconWidth,
iconHeight,
onClick,
children,
...props
}) => {
if (disabled) {
onClick = function () {};
}
const icon = iconSrc && (
<img
className={classNames(iconClassName, styles.icon)}
draggable={false}
src={iconSrc}
height={iconHeight}
width={iconWidth}
/>
);
return (
<span
className={classNames(
styles.outlinedButton,
className
)}
role="button"
onClick={onClick}
{...props}
>
{icon}
<div className={styles.content}>{children}</div>
</span>
);
};
ButtonComponent.propTypes = {
children: PropTypes.node,
className: PropTypes.string,
disabled: PropTypes.bool,
iconClassName: PropTypes.string,
iconSrc: PropTypes.string,
iconHeight: PropTypes.string,
iconWidth: PropTypes.string,
onClick: PropTypes.func
};
export default ButtonComponent;
|