{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconArrowUndoUp/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 IconArrowUndoUp: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"arrow-undo-up, back, top \"><path d=\"M7.28033 5.53033C7.57322 5.23744 7.57322 4.76256 7.28033 4.46967C6.98744 4.17678 6.51256 4.17678 6.21967 4.46967L2.21967 8.46967C1.92678 8.76256 1.92678 9.23744 2.21967 9.53033L6.21967 13.5303C6.51256 13.8232 6.98744 13.8232 7.28033 13.5303C7.57322 13.2374 7.57322 12.7626 7.28033 12.4697L4.56066 9.75H20.5V17.5H11.75C11.3358 17.5 11 17.8358 11 18.25C11 18.6642 11.3358 19 11.75 19H21.25C21.6642 19 22 18.6642 22 18.25V9C22 8.58579 21.6642 8.25 21.25 8.25H4.56066L7.28033 5.53033Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconArrowUndoUp;\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,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAAokB,EAApkB,IAAqB,EAAO,UAAU,6BAA4B,gBAAC,OAAD,CAAM,EAAE,meAAme,KAAK,eAAc,CAAI,GAG9jB",
  "debugId": "4C60A4E0C802EAF264756E2164756E21",
  "names": []
}