mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 11:28:51 +01:00
76 lines
2.1 KiB
JavaScript
76 lines
2.1 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 {
|
|
BackgroundColor,
|
|
Color,
|
|
Size,
|
|
TextVariant,
|
|
} from '../../../helpers/constants/design-system';
|
|
import { BUTTON_LINK_SIZES } from './button-link.constants';
|
|
|
|
export const ButtonLink = ({
|
|
className,
|
|
danger,
|
|
size = Size.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={BackgroundColor.transparent}
|
|
color={danger ? Color.errorDefault : Color.primaryDefault}
|
|
borderRadius={null}
|
|
textProps={{
|
|
variant:
|
|
size === BUTTON_LINK_SIZES.INHERIT
|
|
? TextVariant.inherit
|
|
: TextVariant.bodyMd,
|
|
...textProps,
|
|
}}
|
|
iconProps={{
|
|
size: size === BUTTON_LINK_SIZES.INHERIT ? Size.inherit : Size.SM,
|
|
}}
|
|
iconLoadingProps={{
|
|
size: size === BUTTON_LINK_SIZES.INHERIT ? Size.inherit : Size.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,
|
|
};
|