diff --git a/src/components/BtnGray.tsx b/src/components/BtnGray.tsx index fdaca61..4ef8ba1 100644 --- a/src/components/BtnGray.tsx +++ b/src/components/BtnGray.tsx @@ -4,9 +4,10 @@ type Prop = { text: string; action: () => void; className?: string; + disabled?: boolean; }; -const BtnGray = ({ text, action, className }: Prop) => { +const BtnGray = ({ text, action, className = '', disabled = false }: Prop) => { return ( <>