11 lines
263 B
TypeScript
11 lines
263 B
TypeScript
/// <reference types="react" />
|
|
export interface IconContextProps {
|
|
prefixCls?: string;
|
|
rootClassName?: string;
|
|
csp?: {
|
|
nonce?: string;
|
|
};
|
|
}
|
|
declare const IconContext: import("react").Context<IconContextProps>;
|
|
export default IconContext;
|