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