usePrefix.d.ts 344 B

1234567891011
  1. export type UsePrefix = () => {
  2. /**
  3. * All the component use `@ant-design/cssinjs-utils` should have same `rootPrefixCls`.
  4. */
  5. rootPrefixCls: string;
  6. /**
  7. * `iconPrefixCls` comes from the setting of `@ant-design/icons`.
  8. * Here maybe little coupling but everyone need use this.
  9. */
  10. iconPrefixCls: string;
  11. };