import React from 'react';
import { Minus, Plus, Check, X } from 'lucide-react';
const QuickNumberPad = ({
onNumberClick,
onClear,
onBackspace,
onEnter,
displayValue,
showClear = true,
showBackspace = true
}) => {
return (
{[1, 2, 3, 4, 5, 6, 7, 8, 9].map((num) => (
))}
{showClear && (
)}
{showBackspace && (
)}
);
};
export default QuickNumberPad;