1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 20:59:44 +02:00
planka/client/src/lib/custom-ui/components/Input/Input.jsx
2022-12-26 22:51:17 +01:00

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);
}