mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
- Move to using Material-UI's <Icon /> and <SvgIcon /> - Move to using Material-UI's <Tooltip /> - Move to using Material-UI's <IconButton /> - Switch *.svg webpack importer so we can import then as React components - Export the above to the extension API - Move to using the Material-UI's component names for menuItem.icon's. This means that they are now in PascalCase instead of snake_case - Remove the Material-UI font Signed-off-by: Sebastian Malton <sebastian@malton.name>
23 lines
468 B
TypeScript
23 lines
468 B
TypeScript
import React from "react";
|
|
import { IconButton } from "@material-ui/core";
|
|
|
|
export interface MaybeInteractiveProps {
|
|
isInteractive?: boolean;
|
|
}
|
|
|
|
export class MaybeInteractive extends React.Component<MaybeInteractiveProps> {
|
|
render() {
|
|
const { isInteractive, children } = this.props;
|
|
|
|
if (isInteractive) {
|
|
return (
|
|
<IconButton disableRipple={false}>
|
|
{children}
|
|
</IconButton>
|
|
);
|
|
}
|
|
|
|
return <>{children}</>;
|
|
}
|
|
}
|