1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/status-brick/status-brick.tsx
Roman f69f8c793f
Export more UI components via extensions-api (#1285)
* export more UI components via extensions-api, touches #1277 #1284

Signed-off-by: Roman <ixrock@gmail.com>

* fix build, added table + notification-store exports

Signed-off-by: Roman <ixrock@gmail.com>
2020-11-09 15:16:32 +02:00

21 lines
528 B
TypeScript

import "./status-brick.scss";
import React from "react";
import { cssNames } from "../../utils";
import { TooltipDecoratorProps, withTooltip } from "../tooltip";
export interface StatusBrickProps extends React.HTMLAttributes<any>, TooltipDecoratorProps {
}
@withTooltip
export class StatusBrick extends React.Component<StatusBrickProps> {
render() {
const { className, ...elemProps } = this.props
return (
<div
className={cssNames("StatusBrick", className)}
{...elemProps}
/>
)
}
}