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