@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
11 lines • 444 B
TypeScript
import * as React from 'react';
export interface BadgeProps extends React.HTMLProps<HTMLSpanElement> {
/** Adds styling to the badge to indicate it has been read */
isRead?: boolean;
/** content rendered inside the Badge */
children?: React.ReactNode;
/** additional classes added to the Badge */
className?: string;
}
export declare const Badge: React.FunctionComponent<BadgeProps>;
//# sourceMappingURL=Badge.d.ts.map