import input from './input.js'; export default class inputPassword extends input{ inputType = "password"; outline = "none"; constructor(){ super(); this.type = "password"; } create() { this.customElement.setAttribute("type", this.inputType); } }