Files
twenty/packages/twenty-front/src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuGroup.tsx
2023-12-10 18:10:54 +01:00

19 lines
406 B
TypeScript

import { StyledGroup, StyledGroupHeading } from './KeyboardShortcutMenuStyles';
type KeyboardMenuGroupProps = {
heading: string;
children: React.ReactNode | React.ReactNode[];
};
export const KeyboardMenuGroup = ({
heading,
children,
}: KeyboardMenuGroupProps) => {
return (
<StyledGroup>
<StyledGroupHeading>{heading}</StyledGroupHeading>
{children}
</StyledGroup>
);
};