mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
6848b23169
* fix: global icon style * chore: code clean * feat: icon style in CP * chore: code clean * chore: code clean * chore: support ss * feat: wrapSSR only if iconPrefixCls does not equal parent * chore: code clean * chore: fix lint * chore: fix lint * chore: test * chore: wrap children * chore: code clean * chore: fix lint
19 lines
469 B
TypeScript
19 lines
469 B
TypeScript
import { useStyleRegister } from '@ant-design/cssinjs';
|
|
import { resetIcon } from '../../style';
|
|
import { useToken } from '../../theme';
|
|
|
|
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;
|