diff --git a/src/app/(client-components)/(HeroSearchForm2Mobile)/ButtonSubmit.tsx b/src/app/(client-components)/(HeroSearchForm2Mobile)/ButtonSubmit.tsx new file mode 100644 index 0000000..81d0257 --- /dev/null +++ b/src/app/(client-components)/(HeroSearchForm2Mobile)/ButtonSubmit.tsx @@ -0,0 +1,42 @@ +import React, { FC } from "react"; +import { PathName } from "@/routers/types"; + +interface Props { + className?: string; + onClick?: () => void; + href?: PathName; +} +const ButtonSubmit: FC = ({ + className = "", + onClick = () => {}, + href = "/listing-stay", +}) => { + return ( + + ); +}; + +export default ButtonSubmit;