{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconIntegrations/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 IconIntegrations: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"integrations, frames, keyframes, interactions\"><path d=\"M6.34789 5.09057C7.81214 3.62656 10.1862 3.62687 11.6506 5.09057L15.9084 9.34838C17.3726 10.8128 17.3726 13.1867 15.9084 14.6511L11.6506 18.9089C10.1862 20.3731 7.8123 20.3731 6.34789 18.9089L2.09008 14.6511C0.62638 13.1867 0.626069 10.8126 2.09008 9.34838L6.34789 5.09057Z\" fill=\"currentColor\"/><path d=\"M13.4993 4.30639C14.8713 3.70798 16.528 3.96918 17.6506 5.09154L21.9084 9.34935C23.3725 10.8138 23.3726 13.1877 21.9084 14.6521L17.6506 18.9099C16.528 20.032 14.8712 20.2926 13.4993 19.6941C13.9168 19.512 14.309 19.2513 14.6506 18.9099L18.9084 14.6521C20.3726 13.1877 20.3725 10.8138 18.9084 9.34935L14.6506 5.09154C14.3088 4.74979 13.917 4.48859 13.4993 4.30639Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconIntegrations;\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,EAAmD,CAAC,IAAU,CACzE,OAAO,gBAAoxB,EAApxB,IAAqB,EAAO,UAAU,iDAAgD,gBAAC,OAAD,CAAM,EAAE,oRAAoR,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8WAA8W,KAAK,eAAc,CAAI,GAG9wB",
  "debugId": "E17F93A26ABFD04E64756E2164756E21",
  "names": []
}