/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ import "./status-brick.scss"; import React from "react"; import { cssNames } from "../../utils"; import { TooltipDecoratorProps, withTooltip } from "../tooltip"; export interface StatusBrickProps extends React.HTMLAttributes, TooltipDecoratorProps { } @withTooltip export class StatusBrick extends React.Component { render() { const { className, ...elemProps } = this.props; return (
); } }