A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
ciphermask/ui/components/ui/text-field
Nidhi Kumari 7424e98416
Updated all instances of "Component API" to "Props" in storybook documentation (#15324)
2 years ago
..
README.mdx Updated all instances of "Component API" to "Props" in storybook documentation (#15324) 2 years ago
index.js remove the ui/app and ui/lib folders (#10911) 4 years ago
index.scss Fix/14856 network settings page (#14857) 2 years ago
text-field.component.js Dark Mode: Swap hex colors in ui/components/ui folder (#14191) 3 years ago
text-field.stories.js Update ESLint config to v8 (#12886) 3 years ago

README.mdx

import { Story, Canvas, ArgsTable } from '@storybook/addon-docs';

import TextField from '.';

# Text Field

Text fields allow users to enter text into a UI.

<Canvas>
<Story id="ui-components-ui-text-field-text-field-stories-js--default-story" />
</Canvas>

## Props

<ArgsTable of={TextField} />

### Password Text Field

<Canvas>
<Story id="ui-components-ui-text-field-text-field-stories-js--password" />
</Canvas>

### With Error

<Canvas>
<Story id="ui-components-ui-text-field-text-field-stories-js--error" />
</Canvas>

### Mascara Text

<Canvas>
<Story id="ui-components-ui-text-field-text-field-stories-js--mascara-text" />
</Canvas>

### With Material Theme

<Canvas>
<Story id="ui-components-ui-text-field-text-field-stories-js--material-text" />
</Canvas>

### Password With Material Theme

<Canvas>
<Story id="ui-components-ui-text-field-text-field-stories-js--material-password" />
</Canvas>

### With Material Theme Error

<Canvas>
<Story id="ui-components-ui-text-field-text-field-stories-js--material-error" />
</Canvas>