{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBack/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 IconBack: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"back\"><path d=\"M16.4422 4.41841C17.9314 3.36641 20 4.4192 20 6.22912V17.7709C20 19.5808 17.9314 20.6336 16.4422 19.5816L8.27292 13.8108C7.01663 12.9233 7.01662 11.0768 8.27291 10.1893L16.4422 4.41841Z\" fill=\"currentColor\"/><path d=\"M4 4.82998C4 4.42033 4.33579 4.08824 4.75 4.08824C5.16421 4.08824 5.5 4.42033 5.5 4.82998V19.1701C5.5 19.5798 5.16421 19.9118 4.75 19.9118C4.33579 19.9118 4 19.5798 4 19.1701V4.82998Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBack;\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,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAA+d,EAA/d,IAAqB,EAAO,UAAU,QAAO,gBAAC,OAAD,CAAM,EAAE,4LAA4L,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,0LAA0L,KAAK,eAAc,CAAI,GAGzd",
  "debugId": "3FAEF704B372EAC664756E2164756E21",
  "names": []
}