{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSteveJobs/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 IconSteveJobs: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"steve-jobs, professor, innovation\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 1.75C9.31146 1.75 7.10913 2.7179 5.58119 4.32665C4.05891 5.92943 3.25 8.12142 3.25 10.5C3.25 13.2723 3.58786 15.5744 5.43485 17.8496C5.65733 18.1237 5.87036 18.4126 6.08394 18.7137C6.46282 19.2477 7.16114 20.1185 8.14212 20.8616C9.12486 21.606 10.4295 22.25 12 22.25C13.5705 22.25 14.8751 21.606 15.8579 20.8616C16.8389 20.1185 17.5372 19.2477 17.9161 18.7137C18.1296 18.4126 18.3427 18.1237 18.5652 17.8496C20.4121 15.5744 20.75 13.2723 20.75 10.5C20.75 8.12142 19.9411 5.92943 18.4188 4.32665C16.8909 2.7179 14.6885 1.75 12 1.75ZM4.75162 10.8151C4.77779 13.283 5.13137 15.0958 6.59943 16.9043C6.84203 17.2031 7.06853 17.51 7.28445 17.8135C7.49359 16.5022 8.62976 15.5 10 15.5H14C15.3702 15.5 16.5064 16.5022 16.7156 17.8135C16.9315 17.51 17.158 17.2031 17.4006 16.9043C18.8686 15.0958 19.2222 13.283 19.2484 10.8152L17.7476 11.1153C17.6872 12.5806 16.4802 13.75 15 13.75C13.4929 13.75 12.269 12.5377 12.2502 11.0351C12.0846 11.0069 11.9154 11.0068 11.7498 11.0351C11.731 12.5377 10.5071 13.75 9 13.75C7.51982 13.75 6.31278 12.5806 6.25237 11.1152L4.75162 10.8151ZM6.60069 9.6552C7.07173 8.8166 7.9697 8.25 9 8.25C10.0008 8.25 10.8767 8.78457 11.3577 9.58375C11.7807 9.49062 12.2192 9.49064 12.6422 9.58379C13.1233 8.78459 13.9992 8.25 15 8.25C16.0303 8.25 16.9283 8.81663 17.3994 9.65527L18.4937 9.43639C18.3812 9.27095 18.2716 9.09408 18.1666 8.91449C17.9097 8.47533 17.6505 7.96793 17.4094 7.45796C16.9286 6.44112 16.4998 5.37126 16.2884 4.73706L16.1757 4.39908C15.8289 4.17365 15.4538 3.97686 15.051 3.81285L14.8353 3.9207C13.801 4.43783 12.9251 4.74988 11.9999 4.74988C11.0747 4.74988 10.1987 4.43783 9.16447 3.9207L8.94887 3.8129C8.54612 3.97691 8.17102 4.17367 7.82428 4.39908L7.71163 4.73706C7.50023 5.37126 7.07141 6.44112 6.59065 7.45796C6.34954 7.96793 6.0903 8.47533 5.83344 8.91449C5.72841 9.09405 5.61884 9.2709 5.5063 9.43632L6.60069 9.6552ZM9.04784 19.6659C8.94504 19.5881 8.84573 19.5083 8.75 19.4273V18.25C8.75 17.5596 9.30964 17 10 17H14C14.6904 17 15.25 17.5596 15.25 18.25V19.4273C15.1543 19.5083 15.055 19.5881 14.9522 19.6659C14.7242 19.8386 14.4822 19.9996 14.2266 20.1419L13.998 19.939C13.4652 19.4661 12.666 19.3028 12.0002 19.3027C11.3344 19.3027 10.5352 19.466 10.0023 19.939L9.77358 20.142C9.51797 19.9997 9.27584 19.8386 9.04784 19.6659ZM15 9.75C14.3096 9.75 13.75 10.3096 13.75 11C13.75 11.6904 14.3096 12.25 15 12.25C15.6904 12.25 16.25 11.6904 16.25 11C16.25 10.3096 15.6904 9.75 15 9.75ZM7.75 11C7.75 10.3096 8.30964 9.75 9 9.75C9.69036 9.75 10.25 10.3096 10.25 11C10.25 11.6904 9.69036 12.25 9 12.25C8.30964 12.25 7.75 11.6904 7.75 11Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconSteveJobs;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAiqF,EAAjqF,IAAqB,EAAO,UAAU,qCAAoC,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,khFAAkhF,KAAK,eAAc,CAAI,GAG3pF",
  "debugId": "59E76F279B37670764756E2164756E21",
  "names": []
}