aboutsummaryrefslogtreecommitdiff
path: root/src/settings/components/ui/add-button.jsx
blob: 79292d8f81f2585c5a1f5ff552019c83991e6057 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import './add-button.scss';
import { h, Component } from 'preact';

class AddButton extends Component {
  render() {
    return <input
      className='ui-add-button' type='button' value='&#x271a;'
      {...this.props} />;
  }
}

export default AddButton;