{
  "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=\"M17.4699 18.4697C17.177 18.7626 17.177 19.2374 17.4699 19.5303C17.7628 19.8232 18.2377 19.8232 18.5306 19.5303L21.4699 16.591C22.3486 15.7123 22.3486 14.2877 21.4699 13.409L18.5306 10.4697C18.2377 10.1768 17.7628 10.1768 17.4699 10.4697C17.177 10.7626 17.177 11.2374 17.4699 11.5303L20.2234 14.2838C20.1528 14.2618 20.0778 14.25 20 14.25H7.375C5.2349 14.25 3.5 12.5151 3.5 10.375C3.5 8.2349 5.2349 6.5 7.375 6.5H12.25C12.6642 6.5 13 6.16421 13 5.75C13 5.33579 12.6642 5 12.25 5H7.375C4.40647 5 2 7.40647 2 10.375C2 13.3435 4.40647 15.75 7.375 15.75H20C20.0778 15.75 20.1528 15.7382 20.2234 15.7162L17.4699 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,gBAAysB,EAAzsB,IAAqB,EAAO,UAAU,4BAA2B,gBAAC,OAAD,CAAM,EAAE,ymBAAymB,KAAK,eAAc,CAAI,GAGnsB",
  "debugId": "16AF88D70CDD453664756E2164756E21",
  "names": []
}