{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSettingsGear3/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 IconSettingsGear3: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"settings-gear-3, preferences\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 1C12.4142 0.999999 12.75 1.33578 12.75 1.75L12.75 3.03065C13.8454 3.12112 14.886 3.40794 15.8358 3.856L16.4755 2.74805C16.6826 2.38933 17.1413 2.26642 17.5 2.47353C17.8587 2.68064 17.9816 3.13933 17.7745 3.49805L17.1342 4.60706C18.0146 5.21954 18.7803 5.98518 19.3928 6.86557L20.5018 6.22529C20.8605 6.01818 21.3192 6.14109 21.5263 6.49981C21.7334 6.85853 21.6105 7.31722 21.2518 7.52433L20.1438 8.164C20.5919 9.11379 20.8787 10.1544 20.9692 11.2499L22.2501 11.25C22.6643 11.25 23 11.5859 23 12.0001C23 12.4143 22.6641 12.75 22.2499 12.75L20.9692 12.7499C20.8787 13.8452 20.5919 14.8858 20.1439 15.8355L21.2518 16.4751C21.6105 16.6822 21.7334 17.1409 21.5263 17.4996C21.3192 17.8583 20.8605 17.9812 20.5018 17.7741L19.3929 17.1339C18.7804 18.0144 18.0147 18.78 17.1342 19.3926L17.7745 20.5016C17.9816 20.8603 17.8587 21.319 17.5 21.5261C17.1413 21.7332 16.6826 21.6103 16.4755 21.2516L15.8358 20.1436C14.886 20.5917 13.8454 20.8785 12.75 20.969L12.75 22.25C12.75 22.6642 12.4142 23 12 23C11.5858 23 11.25 22.6642 11.25 22.25L11.25 20.969C10.1546 20.8785 9.11397 20.5917 8.16421 20.1436L7.52453 21.2516C7.31742 21.6103 6.85873 21.7332 6.50001 21.5261C6.14129 21.319 6.01839 20.8603 6.22549 20.5016L6.86578 19.3926C5.98538 18.7801 5.21973 18.0144 4.60725 17.134L3.49825 17.7743C3.13953 17.9814 2.68083 17.8585 2.47373 17.4998C2.26662 17.1411 2.38953 16.6824 2.74825 16.4753L3.8562 15.8356C3.40814 14.8858 3.12132 13.8452 3.03085 12.7498H1.75C1.33579 12.7498 1 12.414 1 11.9998C1 11.5856 1.33579 11.2498 1.75 11.2498H3.03085C3.12132 10.1543 3.40817 9.11366 3.85627 8.16385L2.74825 7.52413C2.38953 7.31703 2.26662 6.85833 2.47373 6.49961C2.68083 6.1409 3.13953 6.01799 3.49825 6.2251L4.60735 6.86544C5.21981 5.9851 5.98543 5.2195 6.86577 4.60705L6.22549 3.49805C6.01838 3.13933 6.14129 2.68063 6.50001 2.47353C6.85873 2.26642 7.31742 2.38933 7.52452 2.74805L8.1642 3.856C9.11397 3.40794 10.1546 3.12112 11.25 3.03065L11.25 1.75C11.25 1.33579 11.5858 1 12 1ZM7.61898 5.91164C6.75943 6.53136 6.0362 7.3287 5.50335 8.2496C4.86538 9.35215 4.50001 10.6322 4.50001 11.9998C4.50001 13.3674 4.86535 14.6474 5.50327 15.7499C6.03613 16.6708 6.75939 17.4682 7.61898 18.088L9.89817 14.1403C9.3445 13.5965 9.00001 12.8386 9.00001 11.9998C9.00001 11.161 9.34449 10.4031 9.89817 9.85932L7.61898 5.91164ZM11.1969 9.10872L8.9173 5.1604C9.85706 4.73609 10.9002 4.49981 12 4.49981C13.3676 4.49981 14.6476 4.86516 15.7501 5.50308C16.8885 6.16175 17.8381 7.11134 18.4967 8.24973C19.0166 9.14813 19.3554 10.1644 19.463 11.2498H14.9055C14.5725 9.95589 13.3979 8.99981 12 8.99981C11.7223 8.99981 11.4528 9.03772 11.1969 9.10872ZM14.9055 12.7498C14.5725 14.0437 13.3979 14.9998 12 14.9998C11.7223 14.9998 11.4528 14.9619 11.1969 14.8909L8.9173 18.8392C9.85706 19.2635 10.9002 19.4998 12 19.4998C13.3676 19.4998 14.6476 19.1345 15.7501 18.4965C16.8885 17.8378 17.8381 16.8882 18.4968 15.7498C19.0166 14.8514 19.3554 13.8352 19.463 12.7498H14.9055Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconSettingsGear3;\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,gBAAs/F,EAAt/F,IAAqB,EAAO,UAAU,gCAA+B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,42FAA42F,KAAK,eAAc,CAAI,GAGh/F",
  "debugId": "177523E4D0284D0564756E2164756E21",
  "names": []
}