Context.d.ts 333 B

12345678910
  1. import { Ref } from 'vue';
  2. export interface IconContextProps {
  3. prefixCls?: Ref<string>;
  4. rootClassName?: Ref<string>;
  5. csp?: Ref<{
  6. nonce?: string;
  7. }>;
  8. }
  9. export declare const useProvideIconContext: (props: IconContextProps) => IconContextProps;
  10. export declare const useInjectIconContext: () => IconContextProps;