mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
10 lines
234 B
JavaScript
10 lines
234 B
JavaScript
import { css } from 'styled-components';
|
|
|
|
export const whenRtl = (restCss) => css`
|
|
${({ theme }) => theme.dir === 'rtl' && restCss}
|
|
`;
|
|
|
|
export const whenLtr = (restCss) => css`
|
|
${({ theme }) => !theme.dir === 'ltr' && restCss}
|
|
`;
|