ant-design/components/steps/style/icon.ts
二货爱吃白萝卜 8db39e34a7
feat: ConfigProvider support classNames and styles for Steps (#53789)
* basic flex

* chore: style basic

* chore: status style

* chore: small size

* chore: label vertical

* chore: more style

* chore: hover disabled

* chore: variant

* chore: dot variant

* chore: max width

* chore: hover dot

* chore: update style

* chore: click style

* chore: init percent

* chore: pass detail

* chore: for progress

* chore: clean up

* chore: clean up

* chore: multiple css var

* chore: status text

* chore: status use var

* chore: fix nest

* chore: use svg

* chore: type of panel

* chore: offset support

* chore: inline offset

* chore: warning of steps

* docs: add semantic preview

* chore: semantic transition

* chore: hover

* chore: adjust style

* chore: update semantic preview

* chore: fix nav style

* chore: patch panel motion

* chore: update semantic preview

* docs: update config provider doc

* chore: fix part ts def

* chore: fix test ts

* test: update test case

* test: coverage

* chore: fix lint

* test: update test case

* test: update snapshot

* chore: adjust style

* chore: fix rtl

* docs: update design

* chore: update sctructure

* chore: update comment

* chore: clean up

* chore: clean up

* chore: cursor style

* chore: coverage

* docs: add missing part

* chore: order

* test: add test case

* chore: fix ts

* chore: clean up
2025-05-13 20:36:54 +08:00

47 lines
1.4 KiB
TypeScript

import type { CSSObject } from '@ant-design/cssinjs';
import { unit } from '@ant-design/cssinjs';
import type { StepsToken } from '.';
import type { GenerateStyle } from '../../theme/internal';
const genIconStyle: GenerateStyle<StepsToken, CSSObject> = (token) => {
const { componentCls, customIconFontSize, motionDurationSlow } = token;
const itemCls = `${componentCls}-item`;
return {
[componentCls]: {
'--steps-icon-size': token.iconSize,
[`${itemCls}-icon`]: {
width: `var(--steps-icon-size)`,
height: `var(--steps-icon-size)`,
margin: 0,
flex: 'none',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
fontSize: token.iconFontSize,
fontFamily: token.fontFamily,
lineHeight: `var(--steps-icon-size)`,
textAlign: 'center',
borderRadius: `var(--steps-icon-size)`,
border: `${unit(token.lineWidth)} ${token.lineType} transparent`,
transition: ['background', 'border', 'color']
.map((key) => `${key} ${motionDurationSlow}`)
.join(', '),
},
// ==================== Custom ====================
[`${itemCls}-custom ${itemCls}-icon`]: {
height: 'auto',
background: 'none',
border: 0,
fontSize: customIconFontSize,
},
},
};
};
export default genIconStyle;