{
  "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.21166L15.3284 16.8316C14.6866 17.6533 13.4733 17.7352 12.727 17.0071L7.10543 11.5226C7.00293 11.4226 6.83755 11.429 6.74303 11.5366L2.31344 16.5784C2.04005 16.8896 1.56617 16.9202 1.25499 16.6468C0.943816 16.3734 0.913185 15.8995 1.18658 15.5883L5.61616 10.5465C6.27775 9.79351 7.43543 9.74898 8.15291 10.449L13.7745 15.9335C13.8811 16.0375 14.0545 16.0258 14.1461 15.9084L21.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,gBAAinB,EAAjnB,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,kfAAkf,KAAK,eAAc,CAAI,GAG3mB",
  "debugId": "B21A9F90F2965F3D64756E2164756E21",
  "names": []
}