@ant-design/icons-vue
Version:
Ant Design Icons for Vue
11 lines (10 loc) • 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;