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
2024-04-22 23:15:31 +02:00

14 lines
372 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);
blur = () => this.inputRef.current.blur();
}