UIInputPassword

Create a search input base on style guide

Since: 7.2.0

Example

import {UIInputPassword} from 'writer'

render($$) {
    const el = $$('div')
    return el.append(
        $$(UIInputPassword, {
            id: 'myPasswordInput',
            label: this.getLabel('Password'),
            placehodlder: 'My placeholder',
            size: 'large',
            value: '',
            onChange: (value) => {
                // Do something
            }
        })
    )
}