ant-design/components/upload/style/rtl.tsx
二货机器人 de2992f96f
chore: move path (#36243)
* chore: base move

* chore: all path

* chore: fix script
2022-06-27 14:25:59 +08:00

16 lines
359 B
TypeScript

import type { UploadToken } from '.';
import type { GenerateStyle } from '../../theme';
// =========================== Motion ===========================
const genRtlStyle: GenerateStyle<UploadToken> = token => {
const { componentCls } = token;
return {
[`${componentCls}-rtl`]: {
direction: 'rtl',
},
};
};
export default genRtlStyle;