Files
starface-outlook-sync-addin/node_modules/@fluentui/react/lib-commonjs/components/Icon/Icon.styles.d.ts
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

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;