import styles from '@patternfly/react-styles/css/components/Compass/compass'; import { css } from '@patternfly/react-styles'; interface CompassMainFooterProps extends Omit, 'title'> { /** Additional classes added to the main footer */ className?: string; /** Main footer content */ children?: React.ReactNode; /** Indicates if the main footer is expanded */ isExpanded?: boolean; } export const CompassMainFooter: React.FunctionComponent = ({ className, children, isExpanded = true, ...props }) => (
{children}
); CompassMainFooter.displayName = 'CompassMainFooter';