ether-admin/node_modules/@ant-design/icons-vue/es/components/Context.d.ts

11 lines
333 B
TypeScript

import { Ref } from 'vue';
export interface IconContextProps {
prefixCls?: Ref<string>;
rootClassName?: Ref<string>;
csp?: Ref<{
nonce?: string;
}>;
}
export declare const useProvideIconContext: (props: IconContextProps) => IconContextProps;
export declare const useInjectIconContext: () => IconContextProps;