{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRepeat/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 IconRepeat: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"repeat\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3.75 4.5C3.61193 4.5 3.5 4.61193 3.5 4.75V17.25C3.5 17.3881 3.61193 17.5 3.75 17.5H7.25C7.66421 17.5 8 17.8358 8 18.25C8 18.6642 7.66421 19 7.25 19H3.75C2.7835 19 2 18.2165 2 17.25V4.75C2 3.7835 2.7835 3 3.75 3H20.25C21.2165 3 22 3.7835 22 4.75V17.25C22 18.2165 21.2165 19 20.25 19H13.6682L15.5087 20.6989C15.8131 20.9799 15.8321 21.4543 15.5511 21.7587C15.2702 22.0631 14.7957 22.0821 14.4913 21.8011L11.2413 18.8011C11.0913 18.6627 11.0042 18.4691 11.0001 18.265C10.9961 18.0609 11.0753 17.864 11.2197 17.7197L14.4697 14.4697C14.7626 14.1768 15.2374 14.1768 15.5303 14.4697C15.8232 14.7626 15.8232 15.2374 15.5303 15.5303L13.5607 17.5H20.25C20.3881 17.5 20.5 17.3881 20.5 17.25V4.75C20.5 4.61193 20.3881 4.5 20.25 4.5H3.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconRepeat;\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,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAA60B,EAA70B,IAAqB,EAAO,UAAU,UAAS,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ytBAAytB,KAAK,eAAc,CAAI,GAGv0B",
  "debugId": "B749CC931D2DA23464756E2164756E21",
  "names": []
}