/** * 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 React, { HTMLAttributes } from "react"; import { Icon } from "../icon"; interface Props extends HTMLAttributes { } export function CloseButton(props: Props) { return (
); }