1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 05:09:43 +02:00
planka/client/src/lib/custom-ui/components/Input/Input.jsx

13 lines
326 B
React
Raw Normal View History

2019-08-31 04:07:25 +05:00
import { Input as SemanticUIInput } from 'semantic-ui-react';
import InputPassword from './InputPassword';
import InputMask from './InputMask';
2019-08-31 04:07:25 +05:00
2022-12-26 22:51:17 +01:00
export default class Input extends SemanticUIInput {
static Password = InputPassword;
2019-08-31 04:07:25 +05:00
2022-12-26 22:51:17 +01:00
static Mask = InputMask;
2019-08-31 04:07:25 +05:00
2022-12-26 22:51:17 +01:00
focus = (options) => this.inputRef.current.focus(options);
}