This repository has been archived on 2020-04-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Vim-Vixen/src/settings/components/ui/AddButton.tsx
2019-05-02 11:14:19 +09:00

12 lines
250 B
TypeScript

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