{
  "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 6C9.0084 6 10.7857 6.98722 11.8739 8.5H20.5C20.725 8.5 20.938 8.60097 21.0805 8.77507L23.3305 11.5251C23.5565 11.8013 23.5565 12.1987 23.3305 12.4749L21.0805 15.2249C20.938 15.399 20.725 15.5 20.5 15.5H18C17.8594 15.5 17.7217 15.4605 17.6025 15.386L16 14.3844L14.3975 15.386C14.2783 15.4605 14.1406 15.5 14 15.5H11.8739C10.7857 17.0128 9.0084 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,gBAA6pB,EAA7pB,IAAqB,EAAO,UAAU,mBAAkB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,giBAAgiB,KAAK,eAAc,CAAI,GAGvpB",
  "debugId": "AD643F83DB1CFC1964756E2164756E21",
  "names": []
}