mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
da4e6d3e37
* Adding TextField component * Fixing lint issues * More linting fixes * Adding more tests * Adding reference to TextFieldBase props * Adding reminder todo comment to styles * Using short hand syntax for conditionally firing event props and removing some css and unused classsNames in favor of box props * Fixing up my sloppy code * Removing text base docs update * More clean up * Adding more stories and docs * Adding new stories to mdx docs
8 lines
225 B
JavaScript
8 lines
225 B
JavaScript
import {
|
|
TEXT_FIELD_BASE_SIZES,
|
|
TEXT_FIELD_BASE_TYPES,
|
|
} from '../text-field-base/text-field-base.constants';
|
|
|
|
export const TEXT_FIELD_SIZES = TEXT_FIELD_BASE_SIZES;
|
|
export const TEXT_FIELD_TYPES = TEXT_FIELD_BASE_TYPES;
|