mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 11:28:51 +01:00
090476d9a2
* button background hover updates * add buttonlink underline * update button base disabled * fix size auto * Update ui/components/component-library/button-link/button-link.stories.js Co-authored-by: George Marshall <george.marshall@consensys.net> * remove underline --------- Co-authored-by: George Marshall <george.marshall@consensys.net>
74 lines
1.8 KiB
TypeScript
74 lines
1.8 KiB
TypeScript
import React from 'react';
|
|
import classnames from 'classnames';
|
|
|
|
import {
|
|
AlignItems,
|
|
BackgroundColor,
|
|
BorderRadius,
|
|
Display,
|
|
IconColor,
|
|
JustifyContent,
|
|
} from '../../../helpers/constants/design-system';
|
|
|
|
import Box from '../../ui/box';
|
|
import { Icon, IconSize } from '../icon';
|
|
|
|
import { ButtonIconSize, ButtonIconProps } from './button-icon.types';
|
|
|
|
const buttonIconSizeToIconSize: Record<ButtonIconSize, IconSize> = {
|
|
[ButtonIconSize.Sm]: IconSize.Sm,
|
|
[ButtonIconSize.Md]: IconSize.Md,
|
|
[ButtonIconSize.Lg]: IconSize.Lg,
|
|
};
|
|
|
|
export const ButtonIcon = React.forwardRef(
|
|
(
|
|
{
|
|
ariaLabel,
|
|
as = 'button',
|
|
className = '',
|
|
color = IconColor.iconDefault,
|
|
href,
|
|
size = ButtonIconSize.Lg,
|
|
iconName,
|
|
disabled,
|
|
iconProps,
|
|
...props
|
|
}: ButtonIconProps,
|
|
ref: React.Ref<HTMLElement>,
|
|
) => {
|
|
const Tag = href ? 'a' : as;
|
|
const isDisabled = disabled && Tag === 'button';
|
|
return (
|
|
<Box
|
|
aria-label={ariaLabel}
|
|
as={Tag}
|
|
className={classnames(
|
|
'mm-button-icon',
|
|
`mm-button-icon--size-${String(size)}`,
|
|
{
|
|
'mm-button-icon--disabled': Boolean(disabled),
|
|
},
|
|
className,
|
|
)}
|
|
color={color}
|
|
{...(isDisabled ? { disabled: true } : {})} // only allow disabled attribute to be passed down to the Box when the as prop is equal to a button element
|
|
display={Display.InlineFlex}
|
|
justifyContent={JustifyContent.center}
|
|
alignItems={AlignItems.center}
|
|
borderRadius={BorderRadius.LG}
|
|
backgroundColor={BackgroundColor.transparent}
|
|
{...(href ? { href } : {})}
|
|
ref={ref}
|
|
{...props}
|
|
>
|
|
<Icon
|
|
name={iconName}
|
|
size={buttonIconSizeToIconSize[size]}
|
|
{...iconProps}
|
|
/>
|
|
</Box>
|
|
);
|
|
},
|
|
);
|