/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ import styles from "./close-button.module.scss"; import type { HTMLAttributes } from "react"; import React from "react"; import { Icon } from "../icon"; export interface CloseButtonProps extends HTMLAttributes { } export function CloseButton(props: CloseButtonProps) { return (
); }