diff --git a/extensions/support-page/renderer.tsx b/extensions/support-page/renderer.tsx index 0901061e79..87142c79da 100644 --- a/extensions/support-page/renderer.tsx +++ b/extensions/support-page/renderer.tsx @@ -22,7 +22,7 @@ export default class SupportPageRendererExtension extends LensRendererExtension className="flex align-center gaps hover-highlight" onClick={() => Navigation.navigate(supportPageURL())} > - + ) } diff --git a/src/renderer/components/cluster-manager/bottom-bar.tsx b/src/renderer/components/cluster-manager/bottom-bar.tsx index 1b464dd00f..fe7876f397 100644 --- a/src/renderer/components/cluster-manager/bottom-bar.tsx +++ b/src/renderer/components/cluster-manager/bottom-bar.tsx @@ -14,7 +14,7 @@ export class BottomBar extends React.Component { return (
- + {currentWorkspace.name}
, TooltipDecoratorPr href?: string; // render icon as hyperlink size?: string | number; // icon-size small?: boolean; // pre-defined icon-size - xs?: boolean; // pre-defined icon-size + smallest?: boolean; // pre-defined icon-size big?: boolean; // pre-defined icon-size active?: boolean; // apply active-state styles interactive?: boolean; // indicates that icon is interactive and highlight it on focus/hover @@ -64,7 +64,7 @@ export class Icon extends React.PureComponent { const { isInteractive } = this; const { // skip passing props to icon's html element - className, href, link, material, svg, size, xs, small, big, + className, href, link, material, svg, size, smallest, small, big, disabled, sticker, active, focusable, children, interactive: _interactive, onClick: _onClick, @@ -76,7 +76,7 @@ export class Icon extends React.PureComponent { const iconProps: Partial = { className: cssNames("Icon", className, { svg, material, interactive: isInteractive, disabled, sticker, active, focusable }, - !size ? { xs, small, big } : {} + !size ? { smallest, small, big } : {} ), onClick: isInteractive ? this.onClick : undefined, onKeyDown: isInteractive ? this.onKeyDown : undefined,