@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
13 lines • 556 B
TypeScript
import * as React from 'react';
export interface IconProps extends Omit<React.HTMLProps<SVGElement>, 'size'> {
/** Changes the color of the icon. */
color?: string;
}
export interface EmptyStateIconProps extends IconProps {
/** Additional classes added to the empty state icon */
className?: string;
/** Icon component to be rendered. Can also be a spinner component */
icon: React.ComponentType<any>;
}
export declare const EmptyStateIcon: React.FunctionComponent<EmptyStateIconProps>;
//# sourceMappingURL=EmptyStateIcon.d.ts.map