{"version":3,"sources":["../src/IconPush/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPush: React.FC<CentralIconBaseProps> = (props) => {\n  return (\n    <CentralIconBase {...props} ariaLabel=\"push, launch, rocket\">\n      <path\n        fillRule=\"evenodd\"\n        clipRule=\"evenodd\"\n        d=\"M11.38 21.63L11.82 22.56V22.57L16.31 18.4V15.53C20.91 13.06 22.76 9.09996 22.31 2.76996L22.26 2.11996L21.61 2.06996C15.28 1.60996 11.32 3.46996 8.85 8.05996H5.98L1.81 12.55L2.74 12.99C2.74 12.99 2.74591 12.9928 2.75385 12.9966C3.0026 13.1156 6.4601 14.7701 8.03 16.34C9.64 17.96 11.38 21.63 11.38 21.63ZM15.5 10.4999C16.6046 10.4999 17.5 9.60451 17.5 8.49994C17.5 7.39537 16.6046 6.49994 15.5 6.49994C14.3954 6.49994 13.5 7.39537 13.5 8.49994C13.5 9.60451 14.3954 10.4999 15.5 10.4999Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M4.33 21.33L5.41 22.38L8.12 19.59L7.04 18.54L4.33 21.33Z\"\n        fill=\"currentColor\"\n      />\n      <path\n        d=\"M1 20.19L2.08 21.24L5.9 17.31L4.82 16.26L1 20.19Z\"\n        fill=\"currentColor\"\n      />\n    </CentralIconBase>\n  );\n};\n\nexport default IconPush;\n","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"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAA4CC,GAErDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,wBACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,weACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,2DACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oDACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPush","props","React","CentralIconBase","IconPush_default"]}