@unicef/material-ui-currency-textfield
Version:
Currency input textfield for react with Material-ui style
30 lines (24 loc) • 775 B
Markdown
[](https://github.com/unicef/material-ui-currency-textfield)
```bash
npm install @unicef/material-ui-currency-textfield --save
```
```html
import React from 'react'
import CurrencyTextField from '@unicef/material-ui-currency-textfield'
export default function MyComponent() {
const [value, setValue] = React.useState();
return (
<CurrencyTextField
label="Amount"
variant="standard"
value={value}
currencySymbol="$"
outputFormat="string"
onChange={(event, value)=> setValue(value)}
/>
);
}
```