{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconOpenaiPrism/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 IconOpenaiPrism: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"openai-prism\"><path d=\"M11.4677 9.5508C12.2386 9.91866 13.0596 10.1773 13.9035 10.3196C13.9081 10.3204 13.9113 10.3226 13.9131 10.3244L13.9409 10.6366C14.0191 11.3677 14.1905 12.0868 14.4502 12.7765L14.4493 12.7775C13.7412 13.2436 13.1036 13.8061 12.5564 14.4463C12.5555 14.4471 12.5528 14.449 12.5477 14.4502C12.5415 14.4514 12.5358 14.4507 12.5324 14.4492C11.7615 14.0814 10.9406 13.8227 10.0966 13.6804C10.0921 13.6795 10.0887 13.6773 10.0871 13.6756V13.6775C10.0281 12.8379 9.84608 12.0112 9.54896 11.2225H9.55087C10.259 10.7564 10.8965 10.1939 11.4438 9.55367C11.4444 9.55304 11.4471 9.55108 11.4524 9.54984C11.4586 9.54854 11.4643 9.54933 11.4677 9.5508Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.8061 5.62805C11.345 5.60951 11.838 5.8064 12.2098 6.147L12.2299 6.16614C12.9275 6.81984 13.8936 7.10029 14.8284 6.92829L14.8323 6.92733L14.8696 6.92063L14.8734 6.91967C15.6578 6.76304 16.4907 7.09723 16.9387 7.81395C17.2251 8.27241 17.3019 8.79728 17.1943 9.28749L17.1876 9.31717L17.1867 9.31813L17.179 9.35451L17.1781 9.35834C16.9751 10.2908 17.2279 11.2649 17.8569 11.9809C18.3879 12.585 18.5146 13.4742 18.1202 14.2175C17.8633 14.7012 17.4382 15.0323 16.9502 15.1798C16.019 15.4612 15.2823 16.1761 14.9721 17.0947C14.7159 17.8534 14.0124 18.4053 13.172 18.4342C12.6244 18.4529 12.1239 18.2499 11.7502 17.899C11.0412 17.2335 10.0544 16.9538 9.10469 17.1435C8.32721 17.2986 7.50147 16.9721 7.05092 16.2684L7.03848 16.2473C6.74793 15.7811 6.67436 15.2461 6.79049 14.7489C7.01141 13.8029 6.76053 12.8087 6.12122 12.0814C5.59034 11.4772 5.46324 10.588 5.85792 9.84474C6.11033 9.36952 6.52488 9.04136 7.00209 8.89014L7.00305 8.8911L7.02794 8.88344C7.95937 8.60205 8.69591 7.88636 9.00607 6.96755C9.26229 6.20897 9.96603 5.65709 10.8061 5.62805ZM11.89 8.66609C11.4847 8.47298 10.9921 8.57271 10.6979 8.91695C10.211 9.48655 9.64323 9.98725 9.01182 10.4029C8.63243 10.6529 8.46828 11.1336 8.63074 11.5644C8.89534 12.2656 9.05711 13.0006 9.10948 13.7464C9.14174 14.2052 9.49005 14.5714 9.93386 14.6464C10.6885 14.7737 11.4219 15.0055 12.1102 15.3339C12.5155 15.5272 13.0079 15.4272 13.3022 15.083C13.7891 14.5135 14.3569 14.0128 14.9883 13.5971C15.3679 13.3472 15.5319 12.8665 15.3694 12.4356C15.1048 11.7344 14.943 10.9994 14.8907 10.2536C14.8584 9.79462 14.5103 9.42842 14.0663 9.35356C13.3117 9.22629 12.5783 8.99455 11.89 8.66609Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M9.37087 2.18595C11.1759 1.70263 13.0087 2.1908 14.3229 3.32246C16.0284 2.99821 17.8626 3.49298 19.1849 4.81516C20.5066 6.137 21 7.96969 20.6767 9.67431C21.8096 10.9888 22.2977 12.8233 21.8141 14.6292C21.3301 16.4356 19.9888 17.779 18.35 18.3509C17.7783 19.989 16.4361 21.3298 14.6302 21.814C12.8243 22.2978 10.9899 21.8094 9.67534 20.6766C7.9705 21.0004 6.13736 20.5069 4.81523 19.1848C3.49333 17.8627 2.99761 16.0291 3.32158 14.3238C2.18976 13.009 1.70246 11.1748 2.18603 9.36983C2.67008 7.56447 4.00994 6.21937 5.64823 5.6472C6.22057 4.0093 7.56558 2.66983 9.37087 2.18595ZM10.7726 4.64856C9.51268 4.69205 8.46025 5.52009 8.07733 6.65445C7.86834 7.27346 7.37172 7.75564 6.74453 7.94512L6.74166 7.94608L6.71294 7.9547L6.71102 7.95565C5.99659 8.18087 5.37046 8.67328 4.99237 9.38515C4.40085 10.4991 4.5928 11.8283 5.38493 12.7296C5.81529 13.2195 5.98455 13.889 5.83589 14.5258C5.66253 15.2681 5.77336 16.0729 6.20835 16.7691L6.20931 16.7711L6.22271 16.7921L6.22367 16.794C6.89735 17.8489 8.13306 18.3373 9.29714 18.1048C9.937 17.977 10.6016 18.1661 11.079 18.6142C11.6353 19.1366 12.3869 19.4427 13.2055 19.4146C14.4655 19.3713 15.5178 18.543 15.9008 17.4087C16.1098 16.7898 16.6065 16.3076 17.2336 16.1181C17.9621 15.898 18.6016 15.4012 18.9858 14.678C19.5774 13.564 19.3855 12.235 18.5932 11.3336C18.1703 10.8521 17.9992 10.1968 18.1346 9.56994L18.1355 9.5709L18.1432 9.53452L18.1499 9.50484L18.1509 9.50196C18.3127 8.76943 18.198 7.97934 17.7698 7.29404C17.1005 6.22327 15.857 5.72479 14.6848 5.95742L14.6513 5.96412L14.4139 5.99284C13.8604 6.02817 13.3102 5.83495 12.8991 5.449L12.8963 5.44709L12.8752 5.42698L12.8723 5.42506L12.6569 5.2441C12.1332 4.8477 11.4776 4.62435 10.7726 4.64856Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconOpenaiPrism;\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,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAA4lI,EAA5lI,IAAqB,EAAO,UAAU,gBAAe,gBAAC,OAAD,CAAM,EAAE,goBAAgoB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,kmDAAkmD,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gqDAAgqD,KAAK,eAAc,CAAI,GAGtlI",
  "debugId": "4824EA96B13322E264756E2164756E21",
  "names": []
}