aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/FAB.tsx
blob: 37c3c9ec74e7774c9120dd204652be9f7afd9c11 (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
/**
 * 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;
};

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

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

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

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

export default observer(Button);