diff --git a/src/components/Button.jsx b/src/components/Button.jsx index 7d7fe5341..448dc4d14 100644 --- a/src/components/Button.jsx +++ b/src/components/Button.jsx @@ -178,125 +178,6 @@ const Core = function ( {...rest} /> ); - // const theme = useTheme(); - // let variant = undefined; // eslint-disable-line - // let color = undefined; // eslint-disable-line - // let roleStyles = {}; - // let spinnerStyles = { - // color: theme.palette.common.white, - // }; - // if (display === 'back') { - // return ( - // - // - // - // - // - // ); - // } - // if ( - // [ - // 'primary', - // 'secondary', - // 'tertiary', - // 'subtle', - // 'marketing', - // ].includes(display) - // ) { - // variant = 'contained'; - // } - // if (['tertiary', 'subtle', 'panel', 'basic'].includes(display)) { - // color = 'default'; - // } else { - // color = display; - // } - // if (display === 'panel') { - // variant = 'outlined'; - // spinnerStyles = { - // color: theme.palette.text.secondary, - // }; - // } - // if (display === 'marketing') { - // roleStyles = { - // padding: '20px 32px', - // }; - // color = 'primary'; - // } - // if (display === 'secondary') { - // roleStyles = { - // color: theme.palette.text.primary, - // }; - // } - // if (display === 'link') { - // roleStyles = { - // textTransform: 'none', - // background: 'none', - // border: 'none', - // padding: '0', - // color: theme.palette.text.primary, - // textDecoration: 'underline', - // cursor: 'pointer', - // backgroundColor: 'transparent', - // textAlign: 'right', - // justifyContent: 'right', - // fontSize: '14px', - // }; - // return ( - // - // - // - // - // - // ); - // } - // if (disabled) { - // delete roleStyles.backgroundColor; - // delete roleStyles.color; - // } - // return ( - // - // - // - // - // - // ); }; const CoreForwardRef = forwardRef(Core);