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