mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
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;
|