{
  "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=\"M6.7801 5.53033C7.073 5.23744 7.073 4.76256 6.7801 4.46967C6.48721 4.17678 6.01234 4.17678 5.71944 4.46967L2.7801 7.40901C1.90142 8.28769 1.90143 9.71231 2.7801 10.591L5.71944 13.5303C6.01234 13.8232 6.48721 13.8232 6.7801 13.5303C7.073 13.2374 7.073 12.7626 6.7801 12.4697L4.06043 9.75H16.625C18.7651 9.75 20.5 11.4849 20.5 13.625C20.5 15.7651 18.7651 17.5 16.625 17.5H11.75C11.3358 17.5 11 17.8358 11 18.25C11 18.6642 11.3358 19 11.75 19H16.625C19.5935 19 22 16.5935 22 13.625C22 10.6565 19.5935 8.25 16.625 8.25H4.06043L6.7801 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,gBAA8nB,EAA9nB,IAAqB,EAAO,UAAU,6BAA4B,gBAAC,OAAD,CAAM,EAAE,6hBAA6hB,KAAK,eAAc,CAAI,GAGxnB",
  "debugId": "623B1F19ACDF9F3364756E2164756E21",
  "names": []
}