{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconArrowRedoDown/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 IconArrowRedoDown: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"arrow-redo-down, forward\"><path d=\"M16.9697 18.4697C16.6769 18.7626 16.6769 19.2374 16.9697 19.5303C17.2626 19.8232 17.7375 19.8232 18.0304 19.5303L21.6769 15.8839C22.165 15.3957 22.165 14.6043 21.6769 14.1161L18.0304 10.4697C17.7375 10.1768 17.2626 10.1768 16.9697 10.4697C16.6769 10.7626 16.6769 11.2374 16.9697 11.5303L19.6894 14.25H4.75C4.05964 14.25 3.5 13.6904 3.5 13V7.75C3.5 7.05964 4.05964 6.5 4.75 6.5H12.25C12.6642 6.5 13 6.16421 13 5.75C13 5.33579 12.6642 5 12.25 5H4.75C3.23122 5 2 6.23122 2 7.75V13C2 14.5188 3.23122 15.75 4.75 15.75H19.6894L16.9697 18.4697Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconArrowRedoDown;\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,gBAA4nB,EAA5nB,IAAqB,EAAO,UAAU,4BAA2B,gBAAC,OAAD,CAAM,EAAE,4hBAA4hB,KAAK,eAAc,CAAI,GAGtnB",
  "debugId": "2828BDF7E2007C1A64756E2164756E21",
  "names": []
}