mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-01 21:57:06 +01:00
db0492e042
* fix button text props * fix textProps size from being overriden * Update ui/components/component-library/button-link/button-link.js Co-authored-by: George Marshall <george.marshall@consensys.net> --------- Co-authored-by: George Marshall <george.marshall@consensys.net>
69 lines
2.0 KiB
JavaScript
69 lines
2.0 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import classnames from 'classnames';
|
|
|
|
import { ButtonBase } from '../button-base';
|
|
import { Text } from '../text';
|
|
import { COLORS, TEXT, SIZES } from '../../../helpers/constants/design-system';
|
|
import { BUTTON_LINK_SIZES } from './button-link.constants';
|
|
|
|
export const ButtonLink = ({
|
|
className,
|
|
danger,
|
|
size = SIZES.AUTO,
|
|
textProps,
|
|
...props
|
|
}) => {
|
|
return (
|
|
<ButtonBase
|
|
className={classnames(className, 'mm-button-link', {
|
|
'mm-button-link--type-danger': danger,
|
|
'mm-button-link--size-inherit': size === BUTTON_LINK_SIZES.INHERIT,
|
|
'mm-button-link--size-auto': size === BUTTON_LINK_SIZES.AUTO,
|
|
})}
|
|
paddingLeft={0}
|
|
paddingRight={0}
|
|
size={size === BUTTON_LINK_SIZES.INHERIT ? null : size}
|
|
backgroundColor={COLORS.TRANSPARENT}
|
|
color={danger ? COLORS.ERROR_DEFAULT : COLORS.PRIMARY_DEFAULT}
|
|
borderRadius={null}
|
|
textProps={{
|
|
variant:
|
|
size === BUTTON_LINK_SIZES.INHERIT ? TEXT.INHERIT : TEXT.BODY_MD,
|
|
...textProps,
|
|
}}
|
|
iconProps={{
|
|
size: size === BUTTON_LINK_SIZES.INHERIT ? SIZES.INHERIT : SIZES.SM,
|
|
}}
|
|
iconLoadingProps={{
|
|
size: size === BUTTON_LINK_SIZES.INHERIT ? SIZES.INHERIT : SIZES.MD,
|
|
}}
|
|
{...props}
|
|
/>
|
|
);
|
|
};
|
|
|
|
ButtonLink.propTypes = {
|
|
/**
|
|
* An additional className to apply to the ButtonLink.
|
|
*/
|
|
className: PropTypes.string,
|
|
/**
|
|
* Boolean to change button type to Danger when true
|
|
*/
|
|
danger: PropTypes.bool,
|
|
/**
|
|
* Possible size values: 'SIZES.AUTO'(auto), 'SIZES.SM'(32px), 'SIZES.MD'(40px), 'SIZES.LG'(48px), 'SIZES.INHERIT'(inherits parents font-size)
|
|
* Default value is 'SIZES.AUTO'.
|
|
*/
|
|
size: PropTypes.oneOf(Object.values(BUTTON_LINK_SIZES)),
|
|
/**
|
|
* textProps accepts all the props from Text component
|
|
*/
|
|
textProps: PropTypes.shape(Text.PropTypes),
|
|
/**
|
|
* ButtonLink accepts all the props from ButtonBase
|
|
*/
|
|
...ButtonBase.propTypes,
|
|
};
|