fix "useBreakpoint" hook

This commit is contained in:
2025-10-05 21:33:20 +03:00
parent ab2a1fdb74
commit f7107c882c
4 changed files with 168 additions and 202 deletions

View File

@@ -0,0 +1,19 @@
import { Input } from "antd";
import ProInputCard from "components/ProInputCard/ProInputCard.tsx";
import { useTranslation } from "react-i18next";
export default function CarPlateCard() {
const { t } = useTranslation();
return (
<>
<ProInputCard title={t("cart.plateNumber")}>
<Input
placeholder={t("plateNumber")}
size="large"
autoFocus={false}
style={{ padding: "7px 11px", height: 50, borderRadius: 888 }}
/>
</ProInputCard>
</>
);
}