{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSettingsGear4/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 IconSettingsGear4: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"settings-gear-4, preferences\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15.3477 2.57667C15.5856 2.59785 15.7902 2.67488 15.9707 2.76124C16.1426 2.84352 16.3389 2.95767 16.5518 3.08058L17.4482 3.59816C17.6612 3.72111 17.8584 3.83416 18.0156 3.94191C18.1806 4.05496 18.349 4.19381 18.4863 4.38917C18.6851 4.6722 18.7973 5.00737 18.8086 5.35304C18.8164 5.59171 18.764 5.80416 18.7002 5.99367C18.6393 6.17413 18.5503 6.38291 18.4541 6.6089L18.2471 7.09328C18.6421 7.59561 18.9789 8.14681 19.2451 8.73683C19.2903 8.83691 19.332 8.93927 19.373 9.04152L19.8955 9.10597C20.1395 9.13572 20.3649 9.16217 20.5518 9.19972C20.7479 9.23917 20.9582 9.3002 21.1611 9.42628C21.4548 9.60884 21.6892 9.87351 21.835 10.187C21.9355 10.4035 21.9699 10.6195 21.9854 10.8189C22 11.0088 22 11.2362 22 11.4819V12.5171C22 12.7629 22 12.9902 21.9854 13.1802C21.9699 13.3796 21.9355 13.5954 21.835 13.812C21.6893 14.1257 21.4548 14.3901 21.1611 14.5728C20.9582 14.6989 20.7479 14.7599 20.5518 14.7993C20.3649 14.8369 20.1396 14.8643 19.8955 14.8941L19.374 14.9566C19.0909 15.6621 18.7093 16.3168 18.2471 16.9048L18.4541 17.3902C18.5504 17.6165 18.6402 17.8257 18.7012 18.0064C18.765 18.1958 18.8163 18.4084 18.8086 18.647C18.7973 18.9926 18.685 19.3279 18.4863 19.6109C18.3491 19.806 18.1804 19.9442 18.0156 20.0571C17.8584 20.1649 17.6612 20.278 17.4482 20.4009L16.5518 20.9185C16.3389 21.0414 16.1426 21.1555 15.9707 21.2378C15.7902 21.3242 15.5857 21.4012 15.3477 21.4224C15.0032 21.453 14.6575 21.3823 14.3525 21.2193C14.142 21.1066 13.9838 20.9562 13.8516 20.8062C13.7256 20.6631 13.5892 20.4812 13.4414 20.2847L13.124 19.8638C12.7565 19.9159 12.3813 19.9448 12 19.9448C11.6184 19.9448 11.2429 19.916 10.875 19.8638L10.5586 20.2847C10.4108 20.4812 10.2744 20.6631 10.1484 20.8062C10.0163 20.9562 9.85896 21.1076 9.64844 21.2202C9.34337 21.3834 8.99693 21.454 8.65234 21.4234C8.41432 21.4022 8.20978 21.3242 8.0293 21.2378C7.85738 21.1555 7.66114 21.0414 7.44824 20.9185L6.55176 20.4019C6.33875 20.2789 6.14164 20.1649 5.98438 20.0571C5.81956 19.9441 5.65083 19.8061 5.51367 19.6109C5.31495 19.3278 5.2027 18.9926 5.19141 18.647C5.1837 18.4083 5.23593 18.1959 5.2998 18.0064C5.36073 17.8257 5.44964 17.6164 5.5459 17.3902L5.75195 16.9048C5.28987 16.3168 4.90805 15.6621 4.625 14.9566L4.10449 14.8941C3.86041 14.8643 3.63514 14.8369 3.44824 14.7993C3.25209 14.7599 3.0418 14.6989 2.83887 14.5728C2.54522 14.3901 2.31073 14.1257 2.16504 13.812C2.06449 13.5954 2.03007 13.3796 2.01465 13.1802C1.99998 12.9902 2 12.7629 2 12.5171V11.4819C2 11.2362 1.99996 11.0088 2.01465 10.8189C2.0301 10.6195 2.06447 10.4035 2.16504 10.187C2.31079 9.87351 2.54525 9.60884 2.83887 9.42628C3.04177 9.3002 3.25213 9.23917 3.44824 9.19972C3.6351 9.16217 3.86048 9.13572 4.10449 9.10597L4.62598 9.04152C4.90908 8.33659 5.29007 7.68177 5.75195 7.09425L5.5459 6.6089C5.44974 6.38291 5.36067 6.17413 5.2998 5.99367C5.23597 5.8042 5.18367 5.59164 5.19141 5.35304C5.20275 5.00741 5.31491 4.67217 5.51367 4.38917C5.65095 4.19384 5.81945 4.05495 5.98438 3.94191C6.14161 3.83417 6.33883 3.72109 6.55176 3.59816L7.44824 3.08058C7.66113 2.95767 7.85741 2.84353 8.0293 2.76124C8.20975 2.67488 8.41438 2.59785 8.65234 2.57667C8.99686 2.54606 9.34342 2.61674 9.64844 2.7798C9.8589 2.89241 10.0163 3.04386 10.1484 3.19386C10.2744 3.33693 10.4108 3.51881 10.5586 3.71535L10.875 4.13527C11.2428 4.08308 11.6185 4.05617 12 4.05617C12.3812 4.05617 12.7565 4.08319 13.124 4.13527L13.4414 3.71535C13.5893 3.51879 13.7256 3.33693 13.8516 3.19386C13.9837 3.04384 14.1411 2.89241 14.3516 2.7798C14.6566 2.61674 15.0032 2.54606 15.3477 2.57667ZM12 9.0005C10.3433 9.00057 9.00015 10.3438 9 12.0005C9.00019 13.6572 10.3433 15.0004 12 15.0005C13.6567 15.0005 14.9998 13.6572 15 12.0005C14.9998 10.3438 13.6568 9.0005 12 9.0005Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconSettingsGear4;\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,gBAA8uH,EAA9uH,IAAqB,EAAO,UAAU,gCAA+B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,omHAAomH,KAAK,eAAc,CAAI,GAGxuH",
  "debugId": "A3261BF8203D826A64756E2164756E21",
  "names": []
}