{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTradingViewLine/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 IconTradingViewLine: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"trading-view-line\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M22.7116 6.15893C23.0381 6.41388 23.0961 6.8852 22.8411 7.21166L16.7028 15.0716C15.3278 16.8324 12.7278 17.0078 11.1286 15.4477L8.61374 12.9942C7.69127 12.0942 6.20282 12.1514 5.35221 13.1196L2.31344 16.5784C2.04005 16.8896 1.56617 16.9202 1.25499 16.6468C0.943816 16.3734 0.913185 15.8995 1.18658 15.5883L4.22534 12.1296C5.64303 10.516 8.12377 10.4205 9.66123 11.9205L12.1761 14.374C13.1356 15.3101 14.6956 15.2049 15.5206 14.1484L21.6589 6.28841C21.9139 5.96195 22.3852 5.90398 22.7116 6.15893Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconTradingViewLine;\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,EAAsD,CAAC,IAAU,CAC5E,OAAO,gBAAknB,EAAlnB,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mfAAmf,KAAK,eAAc,CAAI,GAG5mB",
  "debugId": "847CB062AC26A73364756E2164756E21",
  "names": []
}