aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/FAB.tsx
blob: 1e9ff9022af7bfabbb12f8ec729d6769041a50d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import classnames from 'classnames';
import { noop } from 'lodash';
import { observer } from 'mobx-react';
import { Component, type ReactElement, type ReactNode } from 'react';

interface IProps {
  className: string;
  disabled?: boolean;
  onClick?: () => void;
  type?: string;
  children: ReactNode;
  htmlForm?: string;
}

@observer
class Button extends Component<IProps> {
  render(): ReactElement {
    const {
      className,
      disabled = false,
      onClick = noop,
      type = 'button',
      children,
      htmlForm = '',
    } = this.props;

    const buttonProps = {
      className: classnames({
        ferdium__fab: true,
        [`${className}`]: className,
      }),
      type,
      disabled,
      onClick,
      form: htmlForm,
    };

    return (
      // eslint-disable-next-line @eslint-react/dom/no-missing-button-type
      <button {...buttonProps} type="button">
        {children}
      </button>
    );
  }
}

export default Button;