mirror of https://github.com/portainer/portainer
12 lines
260 B
TypeScript
12 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>;
|
||
|
}
|