{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconV0/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 IconV0: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"v0\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M14.252 8.25H19.876C19.964 8.25 20.052 8.256 20.136 8.268L14.266 14.138C14.2535 14.0502 14.2471 13.9617 14.247 13.873V8.25H11.997V13.873C11.9969 14.4147 12.1035 14.9512 12.3107 15.4517C12.518 15.9523 12.8218 16.407 13.2049 16.7901C13.588 17.1732 14.0427 17.477 14.5433 17.6843C15.0438 17.8915 15.5803 17.9981 16.122 17.998H21.746V15.748H16.122C16.032 15.748 15.943 15.742 15.857 15.73L21.731 9.855C21.7441 9.94441 21.7508 10.0346 21.751 10.125V15.748H24V10.124C24 9.58243 23.8933 9.04616 23.6861 8.54581C23.4788 8.04547 23.1751 7.59084 22.7921 7.20789C22.4092 6.82494 21.9545 6.52117 21.4542 6.31392C20.9538 6.10667 20.4176 6 19.876 6H14.252V8.25ZM0 7.5V7.506L7.686 17.294C8.61 18.47 10.499 17.817 10.499 16.321V7.5H8.25V14.37L2.856 7.5H0Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconV0;\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,EAAyC,CAAC,IAAU,CAC/D,OAAO,gBAAs1B,EAAt1B,IAAqB,EAAO,UAAU,MAAK,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,suBAAsuB,KAAK,eAAc,CAAI,GAGh1B",
  "debugId": "C88BC2A85EA5332D64756E2164756E21",
  "names": []
}