ant-design/components/config-provider/style/index.ts
MadCcc 40944a1c02
perf: only one parent selector in style (#40325)
* chore: add parent selector

* chore: update lint script

* chore: code clean

* perf: style

* chore: remove demo test cssinjs

* fix: input group
2023-01-20 10:31:27 +08:00

24 lines
605 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(),
[`.${iconPrefixCls} .${iconPrefixCls}-icon`]: {
display: 'block',
},
},
},
],
);
};
export default useStyle;