You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.0 KiB
46 lines
1.0 KiB
2 years ago
|
import React from 'react';
|
||
|
import PropTypes from 'prop-types';
|
||
|
import classnames from 'classnames';
|
||
|
|
||
|
import { ButtonBase } from '../button-base';
|
||
|
import { BUTTON_PRIMARY_SIZES } from './button-primary.constants';
|
||
|
|
||
|
export const ButtonPrimary = ({
|
||
|
className,
|
||
|
danger,
|
||
|
size = BUTTON_PRIMARY_SIZES.MD,
|
||
|
...props
|
||
|
}) => {
|
||
|
return (
|
||
|
<ButtonBase
|
||
|
className={classnames(className, 'mm-button-primary', {
|
||
|
'mm-button-primary--type-danger': danger,
|
||
|
})}
|
||
|
size={size}
|
||
|
{...props}
|
||
|
/>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
ButtonPrimary.propTypes = {
|
||
|
/**
|
||
|
* An additional className to apply to the ButtonPrimary.
|
||
|
*/
|
||
|
className: PropTypes.string,
|
||
|
/**
|
||
|
* Boolean to change button type to Danger when true
|
||
|
*/
|
||
|
danger: PropTypes.bool,
|
||
|
/**
|
||
|
* The possible size values for ButtonPrimary: 'SIZES.SM', 'SIZES.MD', 'SIZES.LG',
|
||
|
* Default value is 'SIZES.MD'.
|
||
|
*/
|
||
|
size: PropTypes.oneOf(Object.values(BUTTON_PRIMARY_SIZES)),
|
||
|
/**
|
||
|
* ButtonPrimary accepts all the props from ButtonBase
|
||
|
*/
|
||
|
...ButtonBase.propTypes,
|
||
|
};
|
||
|
|
||
|
export default ButtonPrimary;
|