import { IonButton, IonCol, IonIcon } from "@ionic/react"; import { backspaceOutline } from "ionicons/icons"; import styles from "./KeypadButton.module.scss"; const KeypadButton = (props: any): JSX.Element => { const { small, value, remove, handleClick, isDisabled = false, correct, } = props; return ( {!remove && value} {remove && } ); }; export default KeypadButton;