// SVG flag components — true-to-spec, used in Direct Contact and footer
const FlagUS = ({ size = 28 }) => (
);
const FlagIN = ({ size = 28 }) => (
);
const CTAFooter = () => {
return (
<>
{/* Big CTA */}
{/* Footer */}
>
);
};
const Field = ({label, placeholder, type='text'}) => (
);
const ContactOption = ({icon, title, desc, cta}) => {
const IconCmp = I[icon];
return (
);
};
const FooterCol = ({title, links}) => (
{title}
{links.map(l => (
- {l}
))}
);
const OfficeCard = ({country, flag, color, city, lines}) => (
{city}
{lines.map((l, i) =>
{l}
)}
);
window.CTAFooter = CTAFooter;