@adyen/kyc-components
Version:
`adyen-kyc-components` provides the required pieces to build an onboarding flow based on a legal entity. To onboard and verify users, you need to create a user interface (UI) to collect user data. To speed up building your integration, Adyen offers onboar
9 lines (8 loc) • 854 B
JavaScript
import { jsxs, jsx } from "preact/compat/jsx-runtime";
const SvgPerson = (props) => /* @__PURE__ */ jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: 16, height: 16, fill: "none", role: "img", ...props, children: [
/* @__PURE__ */ jsx("path", { fill: "#00112C", d: "M8 1.25C5.92893 1.25 4.25 2.92893 4.25 5C4.25 7.07107 5.92893 8.75 8 8.75C10.0711 8.75 11.75 7.07107 11.75 5C11.75 2.92893 10.0711 1.25 8 1.25ZM5.75 5C5.75 3.75736 6.75736 2.75 8 2.75C9.24264 2.75 10.25 3.75736 10.25 5C10.25 6.24264 9.24264 7.25 8 7.25C6.75736 7.25 5.75 6.24264 5.75 5Z" }),
/* @__PURE__ */ jsx("path", { fill: "#00112C", d: "M5 10.25C2.92893 10.25 1.25 11.9289 1.25 14V14.75H2.75V14C2.75 12.7574 3.75736 11.75 5 11.75H11C12.2426 11.75 13.25 12.7574 13.25 14V14.75H14.75V14C14.75 11.9289 13.0711 10.25 11 10.25H5Z" })
] });
export {
SvgPerson as default
};