package.src.components.Alert.AlertToggleExpandButton.tsx Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of react-core Show documentation
Show all versions of react-core Show documentation
This library provides a set of common React components for use with the PatternFly reference implementation.
The newest version!
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';