import * as React from "react"; import { cx } from "@emotion/css"; import { buttonReset } from "../../shared/styles/styleUtils"; import { keyboardFocus, pointerCursor } from "../style"; const ResetButton = (props: React.ButtonHTMLAttributes) => { const { children, className, disabled, type = "button", ...other } = props; const classNames = cx(buttonReset, className, keyboardFocus, { [pointerCursor]: !disabled }); return ( ); }; export default ResetButton;