import React from "react"; import styled from "styled-components"; const Button = styled.input` border: none; padding: 4; display: inline; background: none; font-weight: bold; color: green; cursor: pointer; &:hover { color: darkgreen; } `; type Props = React.InputHTMLAttributes; const AddButton: React.FC = (props) => (