{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconLock2/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n  CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden = true,\n  style,\n  ...props\n}) => {\n  return (\n    <svg\n      {...props}\n      aria-hidden={ariaHidden}\n      role={ariaHidden ? undefined : \"img\"}\n      width={typeof size === \"number\" ? `${size}px` : size}\n      height={typeof size === \"number\" ? `${size}px` : size}\n      viewBox=\"0 0 24 24\"\n      fill=\"none\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n      style={{ color, ...style }}\n    >\n      {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n      {children}\n    </svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLock2: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"lock-2, private\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 1.5C14.6234 1.5 16.75 3.62665 16.75 6.25V8.14746C18.6987 9.63325 20 11.9685 20 14.5C20 18.7802 16.2802 22.5 12 22.5C7.71979 22.5 4 18.7802 4 14.5C4 11.9685 5.30128 9.63325 7.25 8.14746V6.25C7.25 3.62665 9.37665 1.5 12 1.5ZM12 12C11.5858 12 11.25 12.3358 11.25 12.75V16.25C11.25 16.6642 11.5858 17 12 17C12.4142 17 12.75 16.6642 12.75 16.25V12.75C12.75 12.3358 12.4142 12 12 12ZM12 3C10.2051 3 8.75 4.45507 8.75 6.25V7.23828C9.75341 6.76736 10.8563 6.5 12 6.5C13.1437 6.5 14.2466 6.76736 15.25 7.23828V6.25C15.25 4.45507 13.7949 3 12 3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLock2;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAA2pB,EAA3pB,IAAqB,EAAO,UAAU,mBAAkB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8hBAA8hB,KAAK,eAAc,CAAI,GAGrpB",
  "debugId": "D1762EB1DC3DF27664756E2164756E21",
  "names": []
}