{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSettingsGear1/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 IconSettingsGear1: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"settings-gear-1, preferences\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M11.1268 2.38721C11.6673 2.07601 12.3327 2.07601 12.8732 2.38721L20.1232 6.56141C20.6657 6.87374 21 7.45204 21 8.07801V15.9217C21 16.5477 20.6657 17.126 20.1232 17.4383L12.8732 21.6125C12.3326 21.9237 11.6674 21.9237 11.1268 21.6125L3.87686 17.4386C3.33436 17.1263 3 16.548 3 15.922V8.07798C3 7.45202 3.33434 6.87372 3.87682 6.56139L11.1268 2.38721ZM8.37503 12C8.37503 9.99797 9.99799 8.375 12 8.375C14.0021 8.375 15.625 9.99797 15.625 12C15.625 14.002 14.0021 15.625 12 15.625C9.99799 15.625 8.37503 14.002 8.37503 12Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconSettingsGear1;\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,EAAoD,CAAC,IAAU,CAC1E,OAAO,gBAAopB,EAAppB,IAAqB,EAAO,UAAU,gCAA+B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0gBAA0gB,KAAK,eAAc,CAAI,GAG9oB",
  "debugId": "27A80D7B65D8841E64756E2164756E21",
  "names": []
}