mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-01 21:57:06 +01:00
01057f9824
* convert text component to TS * invisible character fix * storybook fix * fix types export * update ButtonBase * add typeof to objects in TextProps * fix linting issues * fix implicit conversion * lint fix * add deprecated Text back * change box ref to any * fix classnames issue * account details to use deprecated text reference * ref update * make RefObject * remove RefObject and go back to Ref * react.ref change to box
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';
|