{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSwift/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 IconSwift: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"swift\"><path d=\"M13.9036 2.00117C18.2559 4.62913 21.7332 10.0645 20.2475 15.2941L20.2499 15.2953C22.64 18.2539 21.9886 21.4247 21.6826 20.8267C20.5978 18.7038 18.4417 18.8204 16.6183 19.795L16.5951 19.809L16.5928 19.8113C14.1412 21.1205 10.8469 21.2161 7.53756 19.7857C4.84294 18.6114 2.56413 16.6455 1 14.1458C4.33337 16.6252 9.18493 17.9088 12.9322 15.603C9.20159 12.7185 5.47866 8.87529 3.00531 4.79545C5.71771 7.29246 10.0042 10.426 11.5424 11.2956C8.27825 7.82754 5.40126 3.5551 5.53572 3.69149C10.6777 8.90235 15.4209 11.847 15.4209 11.847C15.5994 11.9461 15.7338 12.0265 15.8382 12.0953C17.1706 8.70574 15.9707 4.81803 13.9036 2V2.00117Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconSwift;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAosB,EAApsB,IAAqB,EAAO,UAAU,SAAQ,gBAAC,OAAD,CAAM,EAAE,unBAAunB,KAAK,eAAc,CAAI,GAG9rB",
  "debugId": "34AF6B5FC9CD95F764756E2164756E21",
  "names": []
}