import * as React from 'react'; import { Button, ButtonProps, ButtonVariant } from '../Button'; import { AlertContext } from './AlertContext'; import AngleRightIcon from '@patternfly/react-icons/dist/esm/icons/angle-right-icon'; import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/Alert/alert'; export interface AlertToggleExpandButtonProps extends ButtonProps { /** Accessible label for the toggle button. */ 'aria-label'?: string; /** Flag to indicate if the content is expanded. */ isExpanded?: boolean; /** A callback for when the toggle button is clicked. */ onToggleExpand?: () => void; /** Variant label for the toggle button. */ variantLabel?: string; } export const AlertToggleExpandButton: React.FunctionComponent = ({ 'aria-label': ariaLabel = '', variantLabel, onToggleExpand, isExpanded = false, ...props }: AlertToggleExpandButtonProps) => { const { title, variantLabel: alertVariantLabel } = React.useContext(AlertContext); return ( ); }; AlertToggleExpandButton.displayName = 'AlertToggleExpandButton';