2024-08-20 23:25:37 +04:00

12 lines
243 B
JavaScript

// =========================== Motion ===========================
const genRtlStyle = token => {
const {
componentCls
} = token;
return {
[`${componentCls}-rtl`]: {
direction: 'rtl'
}
};
};
export default genRtlStyle;