ProzillaOS/src/components/apps/_utils/header-menu/HeaderMenu.tsx
2024-06-02 19:31:53 +02:00

11 lines
No EOL
323 B
TypeScript

import styles from "./HeaderMenu.module.css";
import { ActionsProps, Actions, STYLES } from "../../../actions/Actions";
export function HeaderMenu({ children, ...props }: ActionsProps) {
return <div className={styles.Container}>
<Actions className={STYLES.HEADER_MENU} {...props}>
{children}
</Actions>
</div>;
}