mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
12 lines
326 B
JavaScript
Executable file
12 lines
326 B
JavaScript
Executable file
import { Input as SemanticUIInput } from 'semantic-ui-react';
|
|
|
|
import InputPassword from './InputPassword';
|
|
import InputMask from './InputMask';
|
|
|
|
export default class Input extends SemanticUIInput {
|
|
static Password = InputPassword;
|
|
|
|
static Mask = InputMask;
|
|
|
|
focus = (options) => this.inputRef.current.focus(options);
|
|
}
|