{
  "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=\"M8.52637 4.16799C8.82091 3.9278 9.2557 3.94528 9.53027 4.21975L16.7803 11.4697C16.9209 11.6103 16.9999 11.8012 17 12C17 12.1989 16.9209 12.3897 16.7803 12.5303L9.53027 19.7803C9.23738 20.0732 8.76262 20.0732 8.46973 19.7803L1.21973 12.5303C1.07914 12.3897 1 12.1989 1 12C1.00006 11.8012 1.07913 11.6103 1.21973 11.4697L8.46973 4.21975L8.52637 4.16799Z\" fill=\"currentColor\"/><path d=\"M14.5264 4.16799C14.8209 3.92783 15.2557 3.94532 15.5303 4.21975L22.7803 11.4697C22.9209 11.6103 22.9999 11.8012 23 12C23 12.1989 22.9208 12.3897 22.7803 12.5303L15.5303 19.7803C15.2374 20.0732 14.7626 20.0732 14.4697 19.7803L13 18.3106L18.7803 12.5303C18.9208 12.3897 19 12.1989 19 12C18.9999 11.8012 18.9209 11.6103 18.7803 11.4697L13 5.68947L14.4697 4.21975L14.5264 4.16799Z\" 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,gBAAg3B,EAAh3B,IAAqB,EAAO,UAAU,iDAAgD,gBAAC,OAAD,CAAM,EAAE,kWAAkW,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,4XAA4X,KAAK,eAAc,CAAI,GAG12B",
  "debugId": "DEE12E3282A5F27964756E2164756E21",
  "names": []
}