/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ import styles from "./notice.module.scss"; import type { DOMAttributes } from "react"; import React from "react"; import { cssNames } from "../../utils"; export interface NoticeProps extends DOMAttributes { className?: string; } export function Notice(props: NoticeProps) { return (
{props.children}
); }