{
  "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.03025 5.53033C7.32315 5.23744 7.32315 4.76256 7.03025 4.46967C6.73736 4.17678 6.26249 4.17678 5.96959 4.46967L2.32315 8.11612C1.83499 8.60427 1.83499 9.39573 2.32315 9.88388L5.96959 13.5303C6.26249 13.8232 6.73736 13.8232 7.03025 13.5303C7.32315 13.2374 7.32315 12.7626 7.03025 12.4697L4.31059 9.75H19.25C19.9404 9.75 20.5 10.3096 20.5 11V16.25C20.5 16.9404 19.9404 17.5 19.25 17.5H11.75C11.3358 17.5 11 17.8358 11 18.25C11 18.6642 11.3358 19 11.75 19H19.25C20.7688 19 22 17.7688 22 16.25V11C22 9.48122 20.7688 8.25 19.25 8.25H4.31058L7.03025 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,gBAA8oB,EAA9oB,IAAqB,EAAO,UAAU,6BAA4B,gBAAC,OAAD,CAAM,EAAE,6iBAA6iB,KAAK,eAAc,CAAI,GAGxoB",
  "debugId": "4340AB28272DD86964756E2164756E21",
  "names": []
}