You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
721 B
31 lines
721 B
import { useStyleRegister } from '@ant-design/cssinjs';
|
|
import type { CSPConfig } from '..';
|
|
import { resetIcon } from '../../style';
|
|
import { useToken } from '../../theme/internal';
|
|
|
|
const useStyle = (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 useStyle;
|
|
|