import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/Card/card'; export interface CardSubtitleProps { /** Content rendered inside the description. */ children?: React.ReactNode; /** Id of the description. */ id?: string; } export const CardSubtitle: React.FunctionComponent = ({ children = null, id = '', ...props }: CardSubtitleProps) => (
{children}
); CardSubtitle.displayName = 'CardSubtitle';