import { IonCol } from "@ionic/react"; import styles from "./KeypadInput.module.scss"; const KeypadInput = (props: any): JSX.Element => { const { value, isActive = false, isFilled = false, incorrect, correct, } = props; return (
{value} {!isFilled && "0"}
); }; export default KeypadInput;