Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Commit

Permalink
DEX-1120 clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
Atticus29 committed Jul 6, 2022
1 parent f06b182 commit 319b5df
Showing 1 changed file with 0 additions and 119 deletions.
119 changes: 0 additions & 119 deletions src/components/Button.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
// <Tooltip title={tooltipText}>
// <span>
// <Button
// size="small"
// startIcon={<BackIcon />}
// disabled={disabled}
// style={{
// padding: '4px 16px',
// ...style,
// }}
// ref={ref}
// {...rest}
// >
// {children}
// </Button>
// </span>
// </Tooltip>
// );
// }
// 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 (
// <Tooltip title={tooltipText}>
// <span>
// <button
// type="button"
// style={{ ...roleStyles, ...style }}
// ref={ref}
// {...rest}
// >
// {loading ? (
// <CircularProgress size={24} style={spinnerStyles} />
// ) : (
// children
// )}
// </button>
// </span>
// </Tooltip>
// );
// }
// if (disabled) {
// delete roleStyles.backgroundColor;
// delete roleStyles.color;
// }
// return (
// <Tooltip title={tooltipText}>
// <span>
// <Button
// color={color}
// variant={variant}
// disabled={disabled}
// style={{ ...roleStyles, ...style }}
// size={size}
// ref={ref}
// {...rest}
// >
// {loading ? (
// <CircularProgress size={24} style={spinnerStyles} />
// ) : (
// children
// )}
// </Button>
// </span>
// </Tooltip>
// );
};

const CoreForwardRef = forwardRef(Core);
Expand Down

0 comments on commit 319b5df

Please sign in to comment.