{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconArrowRightLeft/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 IconArrowRightLeft: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"arrow-right-left, sort 1, switch horizontal\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M16.2197 2.71967C16.5126 2.42678 16.9874 2.42678 17.2803 2.71967L20.2197 5.65901C21.0983 6.53769 21.0984 7.96231 20.2197 8.84099L17.2803 11.7803C16.9874 12.0732 16.5126 12.0732 16.2197 11.7803C15.9268 11.4874 15.9268 11.0126 16.2197 10.7197L18.9393 8H3.75C3.33579 8 3 7.66421 3 7.25C3 6.83579 3.33579 6.5 3.75 6.5H18.9393L16.2197 3.78033C15.9268 3.48744 15.9268 3.01256 16.2197 2.71967ZM7.78033 12.2197C8.07322 12.5126 8.07322 12.9874 7.78033 13.2803L5.06066 16H20.25C20.6642 16 21 16.3358 21 16.75C21 17.1642 20.6642 17.5 20.25 17.5H5.06066L7.78033 20.2197C8.07322 20.5126 8.07322 20.9874 7.78033 21.2803C7.48744 21.5732 7.01256 21.5732 6.71967 21.2803L3.78033 18.341C2.90165 17.4623 2.90165 16.0377 3.78033 15.159L6.71967 12.2197C7.01256 11.9268 7.48744 11.9268 7.78033 12.2197Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconArrowRightLeft;\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,EAAqD,CAAC,IAAU,CAC3E,OAAO,gBAAw6B,EAAx6B,IAAqB,EAAO,UAAU,+CAA8C,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+wBAA+wB,KAAK,eAAc,CAAI,GAGl6B",
  "debugId": "A38CAE1D53376F6064756E2164756E21",
  "names": []
}