{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRust/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 IconRust: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"rust\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 1.75C12.1019 1.75 12.1965 1.80267 12.2502 1.88927L12.7895 2.76036C12.8691 2.76711 12.9485 2.77478 13.0276 2.78354L13.7272 2.03564L13.7546 2.00958C13.8223 1.95366 13.9123 1.93049 13.9997 1.9479C14.0995 1.96781 14.1819 2.03801 14.2177 2.13334L14.5767 3.09179C14.6531 3.11393 14.7291 3.13689 14.8047 3.16095L15.638 2.56247L15.67 2.54254C15.7473 2.50083 15.8399 2.49557 15.9223 2.52971C16.0164 2.56871 16.0837 2.65353 16.1001 2.75404L16.2656 3.76862C16.3354 3.80498 16.4047 3.84242 16.4735 3.8805L17.4101 3.45386C17.5028 3.4116 17.6108 3.42024 17.6955 3.47685C17.7803 3.53351 17.8298 3.63015 17.8262 3.73203L17.7896 4.76308C17.8496 4.8112 17.909 4.86008 17.9677 4.90964L18.9731 4.67304C19.0723 4.64967 19.1765 4.67932 19.2486 4.7514C19.3207 4.82348 19.3503 4.92767 19.327 5.02688L19.09 6.03169C19.1396 6.09053 19.1885 6.14997 19.2367 6.21005L20.268 6.17384C20.3699 6.17023 20.4665 6.21974 20.5231 6.30449C20.5797 6.38923 20.5884 6.49721 20.5461 6.58994L20.1193 7.52578C20.1575 7.59475 20.1949 7.66419 20.2314 7.73421L21.246 7.89992C21.3465 7.91635 21.4313 7.98362 21.4703 8.0777C21.5093 8.17177 21.4969 8.27931 21.4375 8.362L20.8391 9.19439C20.8632 9.27022 20.8864 9.34648 20.9086 9.42313L21.8667 9.78233C21.962 9.81806 22.0322 9.90051 22.0521 10.0003C22.072 10.1002 22.0387 10.2032 21.9644 10.2728L21.217 10.9712C21.2259 11.0508 21.2336 11.1306 21.2404 11.2107L22.1107 11.7498C22.1973 11.8035 22.25 11.8981 22.25 12C22.25 12.1019 22.1973 12.1966 22.1107 12.2502L21.2404 12.7889C21.2336 12.869 21.2259 12.9488 21.217 13.0284L21.9644 13.7272C22.0387 13.7968 22.072 13.8998 22.0521 13.9997C22.0322 14.0995 21.962 14.182 21.8667 14.2177L20.9086 14.5765C20.8863 14.6532 20.8632 14.7295 20.8391 14.8054L21.4375 15.638C21.4969 15.7207 21.5093 15.8282 21.4703 15.9223C21.4313 16.0164 21.3465 16.0837 21.246 16.1001L20.2316 16.2654C20.1951 16.3354 20.1577 16.4049 20.1195 16.4738L20.5461 17.4101C20.5884 17.5028 20.5798 17.6108 20.5231 17.6955C20.4665 17.7802 20.3698 17.8298 20.268 17.8262L19.2367 17.7896C19.1885 17.8497 19.1396 17.9091 19.09 17.9679L19.327 18.9731C19.3503 19.0723 19.3207 19.1765 19.2486 19.2486C19.1765 19.3207 19.0723 19.3503 18.9731 19.327L17.9677 19.09C17.9089 19.1395 17.8496 19.1884 17.7896 19.2365L17.8262 20.268C17.8298 20.3698 17.7803 20.4665 17.6955 20.5231C17.6108 20.5797 17.5028 20.5884 17.4101 20.5461L16.4735 20.1191C16.4047 20.1572 16.3354 20.1946 16.2656 20.231L16.1001 21.246C16.0836 21.3465 16.0164 21.4313 15.9223 21.4703C15.8282 21.5093 15.7207 21.4969 15.638 21.4375L14.8047 20.8387C14.7291 20.8627 14.6531 20.8859 14.5767 20.908L14.2177 21.8667C14.1819 21.962 14.0995 22.0322 13.9997 22.0521C13.8998 22.072 13.7968 22.0387 13.7272 21.9644L13.0278 21.2163C12.9487 21.225 12.8692 21.2327 12.7895 21.2394L12.2502 22.1107C12.1965 22.1973 12.1019 22.25 12 22.25C11.8981 22.25 11.8035 22.1973 11.7498 22.1107L11.2101 21.2393C11.1305 21.2325 11.0511 21.2249 10.972 21.2161L10.2728 21.9644C10.2032 22.0387 10.1002 22.072 10.0003 22.0521C9.90052 22.0322 9.81806 21.962 9.78233 21.8667L9.42275 20.9074C9.34658 20.8853 9.27089 20.8621 9.19554 20.8381L8.362 21.4375C8.2793 21.4969 8.17177 21.5093 8.0777 21.4703C7.98362 21.4313 7.91635 21.3465 7.89992 21.246L7.73383 20.2298C7.66444 20.1937 7.59566 20.1566 7.52731 20.1187L6.58994 20.5461C6.49721 20.5884 6.38923 20.5797 6.30449 20.5231C6.21975 20.4665 6.17024 20.3698 6.17384 20.268L6.21024 19.235C6.15069 19.1872 6.09175 19.1388 6.03341 19.0896L5.02688 19.327C4.92767 19.3503 4.82347 19.3207 4.7514 19.2486C4.67933 19.1765 4.64968 19.0723 4.67304 18.9731L4.91002 17.9662C4.86084 17.9079 4.81237 17.8489 4.76462 17.7894L3.73203 17.8262C3.63015 17.8298 3.53351 17.7802 3.47685 17.6955C3.42025 17.6108 3.41161 17.5028 3.45386 17.4101L3.88107 16.4721C3.84329 16.4038 3.80625 16.3351 3.77015 16.2658L2.75404 16.1001C2.65354 16.0837 2.56871 16.0164 2.52971 15.9223C2.49073 15.8282 2.50308 15.7207 2.56247 15.638L3.1619 14.8035C3.13803 14.7285 3.11512 14.6531 3.09313 14.5773L2.13334 14.2177C2.03802 14.182 1.96781 14.0995 1.9479 13.9997C1.92801 13.8998 1.96127 13.7968 2.03564 13.7272L2.7845 13.0268C2.77579 12.9482 2.76805 12.8693 2.76132 12.7901L1.88927 12.2502C1.80268 12.1966 1.75001 12.1019 1.75 12C1.75 11.8981 1.80268 11.8035 1.88927 11.7498L2.76132 11.2096C2.76805 11.1304 2.7756 11.0514 2.78431 10.9728L2.03564 10.2728C1.96127 10.2032 1.92802 10.1002 1.9479 10.0003C1.9678 9.90051 2.03801 9.81806 2.13334 9.78233L3.09294 9.42256C3.11496 9.34662 3.13781 9.27105 3.16171 9.19592L2.56247 8.362C2.50307 8.27931 2.49074 8.17177 2.52971 8.0777C2.5687 7.98362 2.65353 7.91635 2.75404 7.89992L3.76996 7.73383C3.80608 7.66446 3.84308 7.59564 3.88088 7.52731L3.45386 6.58994C3.4116 6.49721 3.42026 6.38923 3.47685 6.30449C3.53351 6.21974 3.63014 6.17023 3.73203 6.17384L4.76423 6.21024C4.81207 6.15057 4.86056 6.09148 4.90983 6.03303L4.67304 5.02688C4.64967 4.92767 4.67933 4.82348 4.7514 4.7514C4.82348 4.67932 4.92766 4.64967 5.02688 4.67304L6.03284 4.90983C6.09138 4.86047 6.15048 4.81178 6.21024 4.76385L6.17384 3.73203C6.17023 3.63015 6.21975 3.53351 6.30449 3.47685C6.38924 3.42024 6.4972 3.4116 6.58994 3.45386L7.52674 3.88069C7.59533 3.84272 7.66438 3.80546 7.73402 3.76919L7.89992 2.75404L7.90835 2.71726C7.93348 2.63309 7.99534 2.56385 8.0777 2.52971C8.17178 2.49072 8.2793 2.50307 8.362 2.56247L9.19535 3.16133C9.27074 3.13733 9.34654 3.11428 9.42275 3.09217L9.78233 2.13334L9.79785 2.09867C9.83893 2.02114 9.91301 1.96531 10.0003 1.9479C10.1002 1.92801 10.2032 1.96126 10.2728 2.03564L10.9722 2.78374C11.0512 2.77497 11.1305 2.76731 11.2101 2.76056L11.7498 1.88927L11.7718 1.85843C11.8273 1.79034 11.9109 1.75 12 1.75ZM10.3 12.6925L10.2981 14.0677H12.0931C12.1617 14.0677 12.2088 14.0814 12.2088 14.1441V16.3139C12.2088 16.3785 12.1617 16.3903 12.0931 16.3903H5.9587C6.15833 16.6609 6.37598 16.9178 6.61005 17.1593L7.87138 16.8886C8.17151 16.8239 8.46584 17.0161 8.53059 17.3162L8.83653 18.7444C9.81639 19.1994 10.8831 19.4376 11.9634 19.4427C13.0437 19.4477 14.1124 19.2196 15.0964 18.7739L15.4026 17.3457C15.4673 17.0456 15.7635 16.8532 16.0637 16.9179L17.3524 17.1945C17.6026 16.9432 17.8347 16.6745 18.0469 16.3903H14.8807C14.3805 16.3903 13.9116 15.684 13.7958 15.3309C13.6801 15.015 13.5095 14.0303 13.433 13.7282C13.1878 12.7435 12.4169 12.6926 12.2402 12.6925H10.3ZM16.503 17.689C16.4214 17.6866 16.3401 17.7006 16.2641 17.7302C16.188 17.7598 16.1187 17.8044 16.0602 17.8612C16.0017 17.9181 15.955 17.9862 15.9233 18.0614C15.8915 18.1366 15.8751 18.2174 15.8752 18.299C15.8752 18.4608 15.9395 18.616 16.0539 18.7304C16.1683 18.8448 16.3235 18.9091 16.4853 18.9091C16.6471 18.9091 16.8023 18.8448 16.9168 18.7304C17.0312 18.616 17.0955 18.4608 17.0955 18.299C17.0955 18.1402 17.0336 17.9878 16.9231 17.8739C16.8125 17.7599 16.6617 17.6936 16.503 17.689ZM7.46926 17.6614C7.38768 17.659 7.30644 17.6732 7.23037 17.7028C7.15431 17.7324 7.08488 17.7769 7.02634 17.8338C6.96783 17.8907 6.92131 17.9588 6.88956 18.034C6.85782 18.1092 6.84144 18.19 6.84147 18.2716C6.84147 18.4334 6.9058 18.5886 7.02021 18.703C7.13463 18.8174 7.28983 18.8817 7.45164 18.8817C7.61344 18.8817 7.76865 18.8174 7.88306 18.703C7.99747 18.5886 8.0618 18.4334 8.0618 18.2716C8.06187 18.1128 7.99999 17.9602 7.88939 17.8463C7.77876 17.7324 7.62799 17.666 7.46926 17.6614ZM12.3324 5.55773C12.1107 5.77152 11.7595 5.76158 11.5477 5.53992L10.608 4.55522C8.9855 4.86177 7.50925 5.69469 6.40794 6.925H14.3727C14.5728 6.92502 15.3143 7.01337 15.9851 7.4547C16.4618 7.77055 17.1622 8.41395 17.1622 9.43597C17.1622 10.3815 16.3775 11.0897 15.6223 11.5684C16.2304 12.049 16.6148 12.3257 16.8463 13.6263C16.9012 13.8656 17.3348 14.0754 17.7271 14.0303C18.1391 13.9852 18.6079 13.8028 18.608 12.9711V12.6178C18.608 12.5433 18.6394 12.4923 18.7158 12.4923H19.4867C19.5192 12.0585 19.514 11.6227 19.471 11.1898L18.0861 10.5758C17.8076 10.4503 17.68 10.1207 17.8036 9.84019L18.5235 8.21583C17.9838 7.26924 17.2445 6.45136 16.357 5.81923C15.4694 5.18713 14.4549 4.75583 13.3839 4.55522L12.3324 5.55773ZM5.86272 9.19669L6.13342 9.80666C6.25897 10.0872 6.13137 10.4148 5.85084 10.5404L4.53645 11.1251C4.43206 12.0871 4.51472 13.0603 4.77975 13.991H6.92596V9.19669H5.86272ZM10.3 9.24765L10.2981 10.662H12.6483C13.1485 10.662 13.7565 10.4854 13.7565 9.99307C13.7565 9.39871 12.964 9.24765 12.8326 9.24765H10.3ZM19.2591 9.0986C19.1776 9.09626 19.0963 9.1102 19.0202 9.13979C18.9442 9.16938 18.8749 9.21398 18.8164 9.27083C18.7579 9.32771 18.7114 9.39585 18.6796 9.47103C18.6479 9.54619 18.6315 9.62698 18.6315 9.70858C18.6315 9.87035 18.6957 10.0256 18.8101 10.14C18.9245 10.2544 19.0797 10.3187 19.2415 10.3187C19.4033 10.3187 19.5585 10.2544 19.6729 10.14C19.7873 10.0256 19.8517 9.87038 19.8517 9.70858C19.8517 9.54984 19.7898 9.39737 19.6793 9.28347C19.5686 9.16955 19.4179 9.1032 19.2591 9.0986ZM4.71308 9.07102C4.6315 9.06866 4.55025 9.0828 4.47419 9.1124C4.39812 9.142 4.3287 9.18655 4.27016 9.24344C4.21163 9.30032 4.16513 9.36844 4.13338 9.44363C4.10163 9.51881 4.08526 9.59958 4.08529 9.68118C4.08529 9.84299 4.14962 9.99819 4.26403 10.1126C4.37845 10.227 4.53366 10.2913 4.69546 10.2913C4.85725 10.2913 5.01248 10.227 5.12688 10.1126C5.24127 9.9982 5.30543 9.84297 5.30543 9.68118C5.30549 9.5224 5.24363 9.3698 5.13301 9.25589C5.0224 9.14201 4.87178 9.07562 4.71308 9.07102ZM11.9872 3.5508C11.9056 3.54844 11.8243 3.56258 11.7483 3.59218C11.6722 3.62178 11.6028 3.66633 11.5442 3.72322C11.4857 3.78008 11.4392 3.84807 11.4075 3.92322C11.3757 3.99842 11.3593 4.07934 11.3594 4.16096C11.3594 4.32275 11.4237 4.47799 11.5381 4.59239C11.6525 4.70677 11.8078 4.77094 11.9695 4.77094C12.1313 4.77092 12.2866 4.70679 12.401 4.59239C12.5154 4.47799 12.5795 4.32275 12.5795 4.16096C12.5796 4.00185 12.5178 3.84888 12.4071 3.7349C12.2964 3.62095 12.1457 3.55492 11.9872 3.5508Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconRust;\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,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAAumT,EAAvmT,IAAqB,EAAO,UAAU,QAAO,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,q/SAAq/S,KAAK,eAAc,CAAI,GAGjmT",
  "debugId": "1946A46D5104B53964756E2164756E21",
  "names": []
}