diff --git a/frontend/src/components/BidNowButton.jsx b/frontend/src/components/BidNowButton.jsx new file mode 100644 index 0000000..3621250 --- /dev/null +++ b/frontend/src/components/BidNowButton.jsx @@ -0,0 +1,27 @@ +import React from 'react'; + +export default function BidNowButton({ size, onClick }) { + const sizeButtonClass = { + small: 'w-[173px] h-[46px]', + large: 'w-[285px] h-[66px]', + }; + + const sizeTextClass = { + small: 'text-[14px]', + large: 'text-[18px]', + }; + + return ( + + ); +}