{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconKey1/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 IconKey1: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"key-1, password\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1 12C1 8.68629 3.68629 6 7 6C8.93293 6 10.6525 6.91485 11.7486 8.33211C11.8462 8.4583 11.9578 8.5 12.0315 8.5H20.0261C20.551 8.5 21.0482 8.7356 21.3805 9.14183L22.8124 10.8918C23.3398 11.5365 23.3398 12.4635 22.8124 13.1082L21.3805 14.8582C21.0482 15.2644 20.551 15.5 20.0261 15.5H18.2868C17.9588 15.5 17.6374 15.4078 17.3593 15.234L16.1325 14.4672C16.0514 14.4166 15.9486 14.4166 15.8675 14.4672L14.6407 15.234C14.3626 15.4078 14.0412 15.5 13.7132 15.5H12.0315C11.9578 15.5 11.8462 15.5417 11.7486 15.6679C10.6525 17.0851 8.93293 18 7 18C3.68629 18 1 15.3137 1 12ZM5.5 12C5.5 11.1716 6.17157 10.5 7 10.5C7.82843 10.5 8.5 11.1716 8.5 12C8.5 12.8284 7.82843 13.5 7 13.5C6.17157 13.5 5.5 12.8284 5.5 12Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconKey1;\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,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAA8zB,EAA9zB,IAAqB,EAAO,UAAU,mBAAkB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,isBAAisB,KAAK,eAAc,CAAI,GAGxzB",
  "debugId": "B3B077368186672964756E2164756E21",
  "names": []
}