mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 11:28:51 +01:00
35 lines
1.0 KiB
JavaScript
35 lines
1.0 KiB
JavaScript
|
import React from 'react';
|
||
|
import PropTypes from 'prop-types';
|
||
|
|
||
|
import { ButtonPrimary } from '../button-primary';
|
||
|
import { ButtonSecondary } from '../button-secondary';
|
||
|
import { ButtonLink } from '../button-link';
|
||
|
|
||
|
import { BUTTON_TYPES } from './button.constants';
|
||
|
|
||
|
export const Button = ({ type, ...props }) => {
|
||
|
switch (type) {
|
||
|
case BUTTON_TYPES.PRIMARY:
|
||
|
return <ButtonPrimary {...props} />;
|
||
|
case BUTTON_TYPES.SECONDARY:
|
||
|
return <ButtonSecondary {...props} />;
|
||
|
case BUTTON_TYPES.LINK:
|
||
|
return <ButtonLink {...props} />;
|
||
|
default:
|
||
|
return <ButtonPrimary {...props} />;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
Button.propTypes = {
|
||
|
/**
|
||
|
* Select the type of Button.
|
||
|
* Possible values could be 'BUTTON_TYPES.PRIMARY', 'BUTTON_TYPES.SECONDARY', 'BUTTON_TYPES.LINK'
|
||
|
* Button will default to `BUTTON_TYPES.PRIMARY`
|
||
|
*/
|
||
|
type: PropTypes.oneOf(Object.values(BUTTON_TYPES)),
|
||
|
/**
|
||
|
* Button accepts all the props from ButtonPrimary (same props as ButtonSecondary & ButtonLink)
|
||
|
*/
|
||
|
...ButtonPrimary.propTypes,
|
||
|
};
|