{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAmp/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 IconAmp: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"amp\"><path d=\"M2.84352 9.30097C3.41225 9.45442 3.98084 9.60835 4.54941 9.76244L11.3022 11.5888C11.5378 11.653 11.8993 11.7388 12.1196 11.8157C12.1556 11.8541 12.18 11.8777 12.1944 11.9296C12.2976 12.2998 12.3931 12.6758 12.4904 13.0475L14.667 21.3144C14.0219 21.5146 13.3374 21.6716 12.6878 21.8618C12.6121 21.884 12.263 21.9713 12.2216 21.998H12.1421C12.039 21.6592 11.9522 21.2878 11.8614 20.9446L10.7267 16.6471C10.6272 16.2695 10.5036 15.8411 10.4165 15.464C10.3275 15.5943 10.0593 15.8485 9.93288 15.9746L9.09158 16.8204L6.80921 19.142L6.08655 19.8702C5.9826 19.9742 5.79423 20.1735 5.68424 20.2593C5.38428 19.9904 5.04823 19.6067 4.7624 19.3164C4.46004 19.0093 4.14556 18.7004 3.84956 18.3895C3.9183 18.3023 4.09916 18.1294 4.18448 18.0442L4.80802 17.419L6.7229 15.4632L7.97928 14.1997C8.10866 14.0683 8.44739 13.697 8.57015 13.5993C8.42099 13.5687 8.19606 13.5015 8.04596 13.4604L2.96973 12.0833C2.76644 12.0284 2.31901 11.9214 2.14062 11.848V11.7849C2.17169 11.7364 2.24159 11.4328 2.26179 11.3559L2.62429 9.95948C2.65236 9.85173 2.76405 9.35403 2.81327 9.30893C2.82335 9.30628 2.83344 9.30362 2.84352 9.30097Z\" fill=\"currentColor\"/><path d=\"M6.39851 5.64263C6.46862 5.64793 7.00294 5.80157 7.09893 5.82733L13.8559 7.65424C14.4097 7.80494 14.9653 7.95298 15.5193 8.10261C15.6031 8.12523 15.6891 8.15749 15.7637 8.20239C15.8383 8.32666 16.1527 9.62071 16.2153 9.85898L18.0154 16.7079C18.0699 16.9137 18.2299 17.465 18.2533 17.6572C18.2256 17.6955 17.313 17.9303 17.1993 17.9602C16.7796 18.0961 16.1836 18.2373 15.7453 18.3592C15.707 18.244 15.6664 18.0643 15.6349 17.9433L14.01 11.7838C13.9008 11.3689 13.7191 10.7564 13.6428 10.3497C13.5508 10.3331 13.3836 10.2815 13.2885 10.2551L6.92066 8.52678C6.73923 8.47727 5.86965 8.26735 5.7533 8.20015C5.76845 8.03984 5.83863 7.80104 5.88151 7.63648L6.30616 6.00693C6.33493 5.89535 6.36381 5.74649 6.39851 5.64263Z\" fill=\"currentColor\"/><path d=\"M10.0758 2.00195C10.1215 2.03888 12.058 2.5487 12.2725 2.60683L17.6138 4.05219C17.9805 4.14949 18.3466 4.24908 18.712 4.35101C18.8844 4.39755 19.2125 4.46894 19.3581 4.54538C19.4258 4.71213 19.551 5.23783 19.6047 5.44064L21.8617 14.0282C21.7861 14.0362 21.6445 14.0815 21.5665 14.1033L21.1285 14.2224C20.547 14.3834 19.9131 14.5717 19.3323 14.7174C19.177 14.0506 18.9755 13.3407 18.8002 12.6752L17.7398 8.65224C17.5649 8.0045 17.3955 7.35531 17.2315 6.70473C16.6072 6.51567 15.8822 6.33733 15.2473 6.16454L9.89935 4.71365C9.81133 4.68988 9.39862 4.58553 9.35068 4.55971C9.33346 4.51236 9.36379 4.41372 9.37768 4.36325C9.5929 3.58087 9.77309 2.78096 9.99765 2.00195H10.0758Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconAmp;\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,EAA0C,CAAC,IAAU,CAChE,OAAO,gBAAykF,EAAzkF,IAAqB,EAAO,UAAU,OAAM,gBAAC,OAAD,CAAM,EAAE,mlCAAmlC,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,6sBAA6sB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oqBAAoqB,KAAK,eAAc,CAAI,GAGnkF",
  "debugId": "A2FCC0944937CA0D64756E2164756E21",
  "names": []
}