/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ import "./no-items.scss"; import React from "react"; import type { IClassName } from "../../utils"; import { cssNames } from "../../utils"; export interface NoItemsProps { className?: IClassName; children?: React.ReactNode; } export function NoItems(props: NoItemsProps) { const { className, children } = props; return (