mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
1265731344
* button housekeeping * add iconsearch * fix description * readme update * update disabled classnames * buttonlink disabled class * add disabled proptypes * add constant exports * update disabled style classes * update snapshot for box pill classname * add buttonTextProps * update primarybutton background color to use box props * update button secondary and link to use box props * update tests
54 lines
1.4 KiB
JavaScript
54 lines
1.4 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import classnames from 'classnames';
|
|
|
|
import { ButtonBase } from '../button-base';
|
|
import { COLORS } from '../../../helpers/constants/design-system';
|
|
import { BUTTON_SECONDARY_SIZES } from './button-secondary.constants';
|
|
|
|
export const ButtonSecondary = ({
|
|
className,
|
|
danger,
|
|
disabled,
|
|
size = BUTTON_SECONDARY_SIZES.MD,
|
|
...props
|
|
}) => {
|
|
return (
|
|
<ButtonBase
|
|
backgroundColor={COLORS.TRANSPARENT}
|
|
borderColor={danger ? COLORS.ERROR_DEFAULT : COLORS.PRIMARY_DEFAULT}
|
|
color={danger ? COLORS.ERROR_DEFAULT : COLORS.PRIMARY_DEFAULT}
|
|
className={classnames(className, 'mm-button-secondary', {
|
|
'mm-button-secondary--type-danger': danger,
|
|
'mm-button-secondary--disabled': disabled,
|
|
})}
|
|
size={size}
|
|
{...{ disabled, ...props }}
|
|
/>
|
|
);
|
|
};
|
|
|
|
ButtonSecondary.propTypes = {
|
|
/**
|
|
* An additional className to apply to the ButtonSecondary.
|
|
*/
|
|
className: PropTypes.string,
|
|
/**
|
|
* When true, ButtonSecondary color becomes Danger.
|
|
*/
|
|
danger: PropTypes.bool,
|
|
/**
|
|
* Boolean to disable button
|
|
*/
|
|
disabled: PropTypes.bool,
|
|
/**
|
|
* Possible size values: 'SIZES.SM'(32px), 'SIZES.MD'(40px), 'SIZES.LG'(48px).
|
|
* Default value is 'SIZES.MD'.
|
|
*/
|
|
size: PropTypes.oneOf(Object.values(BUTTON_SECONDARY_SIZES)),
|
|
/**
|
|
* ButtonSecondary accepts all the props from ButtonBase
|
|
*/
|
|
...ButtonBase.propTypes,
|
|
};
|