Улучшить мобильное меню и форму заявки, добавить номер лида и заменить middleware на proxy
All checks were successful
Auto Deploy / deploy (push) Successful in 22s
All checks were successful
Auto Deploy / deploy (push) Successful in 22s
This commit is contained in:
25
components/barrier-icon.tsx
Normal file
25
components/barrier-icon.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
import type { SVGProps } from "react";
|
||||
|
||||
export default function BarrierIcon(props: SVGProps<SVGSVGElement>) {
|
||||
return (
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
strokeWidth="2"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
aria-hidden="true"
|
||||
{...props}
|
||||
>
|
||||
<path d="M3 20h18" />
|
||||
<path d="M6 20v-7a2 2 0 0 1 2-2h1" />
|
||||
<path d="M9 11h10.5" />
|
||||
<path d="M9 11 20 5" />
|
||||
<path d="M11.3 9.75 13 10.7" />
|
||||
<path d="M14.8 7.85 16.5 8.8" />
|
||||
<path d="M18.3 5.95 20 6.9" />
|
||||
<path d="M6 16h2" />
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user