Files
web-client/node_modules/@ant-design/cssinjs-utils/es/hooks/usePrefix.d.ts
wdvipa 52c6322a24 cs
2026-02-09 16:30:59 +08:00

12 lines
344 B
TypeScript

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;
};