import { useState } from "react"; import styled from "styled-components"; import { defaultBorderRadius } from "."; const Button = styled.button` border: none; color: white; background-color: transparent; border: 1px solid white; border-radius: ${defaultBorderRadius}; padding: 3px 6px; &:hover { background-color: white; color: black; } `; interface PillButtonProps { onHover?: (arg0: boolean) => void; onDelete?: () => void; title: string; } const PillButton = (props: PillButtonProps) => { const [isHovered, setIsHovered] = useState(false); return ( ); }; export default PillButton;