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.
16 lines
370 B
16 lines
370 B
3 years ago
|
import type { UploadToken } from '.';
|
||
2 years ago
|
import type { GenerateStyle } from '../../theme/internal';
|
||
3 years ago
|
|
||
|
// =========================== Motion ===========================
|
||
2 years ago
|
const genRtlStyle: GenerateStyle<UploadToken> = (token) => {
|
||
3 years ago
|
const { componentCls } = token;
|
||
|
|
||
|
return {
|
||
|
[`${componentCls}-rtl`]: {
|
||
|
direction: 'rtl',
|
||
|
},
|
||
|
};
|
||
|
};
|
||
|
|
||
|
export default genRtlStyle;
|