mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
694773f17a
Co-authored-by: georgewrmarshall <george.marshall@consensys.net> Co-authored-by: NidhiKJha <nidhi.kumari@consensys.net> Co-authored-by: montelaidev <monte.lai@consensys.net>
12 lines
290 B
JavaScript
12 lines
290 B
JavaScript
export const TEXT_DIRECTIONS = {
|
|
LEFT_TO_RIGHT: 'ltr',
|
|
RIGHT_TO_LEFT: 'rtl',
|
|
AUTO: 'auto',
|
|
};
|
|
|
|
/**
|
|
* The INVISIBLE_CHARACTER is a very useful tool if you want to make sure a line of text
|
|
* takes up vertical space even if it's empty.
|
|
*/
|
|
export const INVISIBLE_CHARACTER = '\u200B';
|