18 lines
615 B
TypeScript
18 lines
615 B
TypeScript
import type { IIconStyleProps, IIconStyles } from './Icon.types';
|
|
/** Class names used in themeable and non-themeable Icon components */
|
|
export declare const classNames: import("@fluentui/merge-styles/lib/IStyleSet").IProcessedStyleSet<{
|
|
root: {
|
|
display: string;
|
|
textDecoration: string;
|
|
};
|
|
placeholder: (string | {
|
|
width: string;
|
|
})[];
|
|
image: (string | {
|
|
overflow: string;
|
|
})[];
|
|
}>;
|
|
/** Class name used only in non-themeable Icon components */
|
|
export declare const MS_ICON = "ms-Icon";
|
|
export declare const getStyles: (props: IIconStyleProps) => IIconStyles;
|