mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 15:59:38 +08:00
5d9cb2e50d
* refactor: Optimize theme export and add docs * chore: fix lint * chore: fix lint * chore: fix lint
19 lines
478 B
TypeScript
19 lines
478 B
TypeScript
import { useStyleRegister } from '@ant-design/cssinjs';
|
|
import { resetIcon } from '../../style';
|
|
import { useToken } from '../../theme/internal';
|
|
|
|
const useStyle = (iconPrefixCls: string) => {
|
|
const [theme, token] = useToken();
|
|
// Generate style for icons
|
|
return useStyleRegister(
|
|
{ theme, token, hashId: '', path: ['ant-design-icons', iconPrefixCls] },
|
|
() => [
|
|
{
|
|
[`.${iconPrefixCls}`]: resetIcon(),
|
|
},
|
|
],
|
|
);
|
|
};
|
|
|
|
export default useStyle;
|