@phoss/cssinjs-utils
Version:
A cssinjs util library to support Ant Design (antd) and its ecosystem libraries.
12 lines (11 loc) • 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;
};