mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 00:49:39 +08:00
3e171a9f4f
* feat: default add resetIcon Style chore: remove test: add case feat(App): icon reset style feature Revert "feat(App): icon reset style feature" This reverts commit be6905553dcabbd490ad60be0c08c8328736bd62. Revert "chore: remove" This reverts commit 417d5f90051a342325ccc9b5cbf3d249ab0ec826. chore: update chore: update * chore: update * chore: resolve import * chore: update code style
32 lines
745 B
TypeScript
32 lines
745 B
TypeScript
import { useStyleRegister } from '@ant-design/cssinjs';
|
|
import { resetIcon } from '../../style';
|
|
import type { CSPConfig } from '../../config-provider';
|
|
import useToken from '../useToken';
|
|
|
|
const useResetIconStyle = (iconPrefixCls: string, csp?: CSPConfig) => {
|
|
const [theme, token] = useToken();
|
|
|
|
// Generate style for icons
|
|
return useStyleRegister(
|
|
{
|
|
theme,
|
|
token,
|
|
hashId: '',
|
|
path: ['ant-design-icons', iconPrefixCls],
|
|
nonce: () => csp?.nonce!,
|
|
},
|
|
() => [
|
|
{
|
|
[`.${iconPrefixCls}`]: {
|
|
...resetIcon(),
|
|
[`.${iconPrefixCls} .${iconPrefixCls}-icon`]: {
|
|
display: 'block',
|
|
},
|
|
},
|
|
},
|
|
],
|
|
);
|
|
};
|
|
|
|
export default useResetIconStyle;
|