mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
f6ee35b6e3
* Removing TextFieldBase and updating TextField and TextFieldSearch * Removing autoFocus from MDX so it's not annoying
14 lines
265 B
JavaScript
14 lines
265 B
JavaScript
import { Size } from '../../../helpers/constants/design-system';
|
|
|
|
export const TEXT_FIELD_SIZES = {
|
|
SM: Size.SM,
|
|
MD: Size.MD,
|
|
LG: Size.LG,
|
|
};
|
|
export const TEXT_FIELD_TYPES = {
|
|
TEXT: 'text',
|
|
NUMBER: 'number',
|
|
PASSWORD: 'password',
|
|
SEARCH: 'search',
|
|
};
|