mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-30 08:09:15 +01:00
6907c4a565
* Adding TextFieldSearch component * Updating docs and stories * Moving controlled test into testing utils * Fixing spelling in prop types af => of
14 lines
279 B
JavaScript
14 lines
279 B
JavaScript
import { SIZES } from '../../../helpers/constants/design-system';
|
|
|
|
export const TEXT_FIELD_BASE_SIZES = {
|
|
SM: SIZES.SM,
|
|
MD: SIZES.MD,
|
|
LG: SIZES.LG,
|
|
};
|
|
export const TEXT_FIELD_BASE_TYPES = {
|
|
TEXT: 'text',
|
|
NUMBER: 'number',
|
|
PASSWORD: 'password',
|
|
SEARCH: 'search',
|
|
};
|