mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +02:00
11 lines
260 B
TypeScript
11 lines
260 B
TypeScript
import { ReactNode } from 'react';
|
|
|
|
import styles from './ActionsMenuTitle.module.css';
|
|
|
|
interface Props {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export function ActionsMenuTitle({ children }: Props) {
|
|
return <div className={styles.tableActionsTitle}>{children}</div>;
|
|
}
|