aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/FAB.tsx
blob: 583c9d556534999ef0bf2a8f7f710a822d9ba9ed (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
48
49
50
51
/**
 * Floating Action Button (FAB)
 */
import { Component, ReactChildren } from 'react';
import { observer } from 'mobx-react';
import classnames from 'classnames';

type Props = {
  className: string;
  disabled: boolean;
  onClick: () => void;
  type: string;
  children: ReactChildren;
  htmlForm: string;
};

@observer
class Button extends Component<Props> {
  static defaultProps = {
    disabled: false,
    onClick: () => {},
    type: 'button',
    htmlForm: '',
  };

  element = null;

  render() {
    const { className, disabled, onClick, type, children, htmlForm } =
      this.props;

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

    return (
      <button {...buttonProps} type="button">
        {children}
      </button>
    );
  }
}

export default Button;