{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconArrowPathLeft/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 IconArrowPathLeft: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"arrow-path-left\"><path d=\"M9.76329 4.17939C9.98589 3.98952 10.2986 3.94643 10.5642 4.06901C10.8299 4.19158 11 4.45744 11 4.75001V8.00001H21.25C21.6642 8.00001 22 8.3358 22 8.75001V15.25C22 15.6642 21.6642 16 21.25 16H11V19.25C11 19.5426 10.8299 19.8084 10.5642 19.931C10.2986 20.0536 9.98589 20.0105 9.76329 19.8206L1.26329 12.5706C1.09623 12.4281 1 12.2196 1 12C1 11.7804 1.09623 11.5719 1.26329 11.4294L9.76329 4.17939Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconArrowPathLeft;\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,EAAoD,CAAC,IAAU,CAC1E,OAAO,gBAAqe,EAAre,IAAqB,EAAO,UAAU,mBAAkB,gBAAC,OAAD,CAAM,EAAE,8YAA8Y,KAAK,eAAc,CAAI,GAG/d",
  "debugId": "74501C4FE1682EE264756E2164756E21",
  "names": []
}