import * as React from 'react'; import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/ActionList/action-list'; export interface ActionListGroupProps extends React.HTMLProps { /** Children of the action list group */ children?: React.ReactNode; /** Additional classes added to the action list group */ className?: string; } export const ActionListGroup: React.FunctionComponent = ({ children, className = '', ...props }: ActionListGroupProps) => (
{children}
); ActionListGroup.displayName = 'ActionListGroup';