ant-design/components/config-provider/style/index.tsx
MadCcc 5d9cb2e50d
refactor: Optimize theme export and add docs (#38902)
* refactor: Optimize theme export and add docs

* chore: fix lint

* chore: fix lint

* chore: fix lint
2022-11-23 20:22:38 +08:00

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;