@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
10 lines • 428 B
TypeScript
import * as React from 'react';
import { ButtonProps } from '../Button';
export interface AlertActionLinkProps extends ButtonProps {
/** Content rendered inside the AlertLinkAction */
children?: string;
/** Additional classes added to the AlertActionLink */
className?: string;
}
export declare const AlertActionLink: React.FunctionComponent<AlertActionLinkProps>;
//# sourceMappingURL=AlertActionLink.d.ts.map