💄 STYLE: fix DatePicker's next & prev icons in rtl mode (#40238)

This commit is contained in:
Danial Soheili 2023-01-15 11:00:16 +03:30 committed by GitHub
parent 546bda457f
commit dfa207253e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -352,12 +352,12 @@ export const genPanelStyle = (token: SharedPickerToken): CSSObject => {
[`${componentCls}-prev-icon, [`${componentCls}-prev-icon,
${componentCls}-super-prev-icon`]: { ${componentCls}-super-prev-icon`]: {
transform: 'rotate(135deg)', transform: 'rotate(45deg)',
}, },
[`${componentCls}-next-icon, [`${componentCls}-next-icon,
${componentCls}-super-next-icon`]: { ${componentCls}-super-next-icon`]: {
transform: 'rotate(-45deg)', transform: 'rotate(-135deg)',
}, },
}, },
}, },