{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconThreads/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 IconThreads: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"threads\"><path d=\"M17.2472 11.2472C17.2221 8.34254 15.6474 6.59222 12.9875 6.59222C11.2121 6.59222 9.71896 7.39522 8.93476 8.67504L10.6537 9.87328C11.0991 9.17065 11.7139 8.5872 12.8432 8.5872C14.1167 8.5872 14.7754 9.29611 14.9636 10.6136C14.3488 10.5195 13.734 10.4693 13.1004 10.4693C9.66248 10.4693 8.04391 12.0251 8.04391 14.0828C8.04391 16.1782 9.66248 17.4078 12.0464 17.4078C14.6625 17.4078 16.2246 15.6449 16.8645 13.4617C17.5295 13.7629 17.9875 14.4655 17.9875 15.5194C17.9875 18.3425 14.7315 19.8796 11.9711 19.8796C7.89963 19.8796 5.23965 17.207 5.23965 12.8595C5.23965 7.53326 8.75909 4.12046 13.4893 4.12046C16.6637 4.12046 18.2321 5.51319 19.2986 7.38269L21.0552 6.15307C19.8946 3.7315 17.3036 2 13.4141 2C7.21581 2 3 6.39774 3 12.7779C3 18.6123 7.12798 22 12.0464 22C16.1117 22 20.2208 19.6286 20.2208 15.5696C20.2208 13.4492 19.0038 12.0439 17.2472 11.2472ZM11.9711 15.2936C11.074 15.2936 10.2836 14.867 10.2836 14.0828C10.2836 12.8469 11.8018 12.4705 13.2886 12.4705C13.8532 12.4705 14.4053 12.5081 14.8946 12.6148C14.5433 14.2208 13.5019 15.2936 11.9711 15.2936Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconThreads;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAAynC,EAAznC,IAAqB,EAAO,UAAU,WAAU,gBAAC,OAAD,CAAM,EAAE,0iCAA0iC,KAAK,eAAc,CAAI,GAGnnC",
  "debugId": "1C30483B337E693064756E2164756E21",
  "names": []
}