minishouyin/node_modules/@ant-design/cssinjs-utils/lib/hooks/usePrefix.d.ts

12 lines
344 B
TypeScript
Raw Normal View History

2025-11-12 11:35:57 +08:00
export type UsePrefix = () => {
/**
* All the component use `@ant-design/cssinjs-utils` should have same `rootPrefixCls`.
*/
rootPrefixCls: string;
/**
* `iconPrefixCls` comes from the setting of `@ant-design/icons`.
* Here maybe little coupling but everyone need use this.
*/
iconPrefixCls: string;
};