{
  "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=\"M15.7197 21.2803C16.0126 21.5732 16.4874 21.5732 16.7803 21.2803L20.7803 17.2803C21.0732 16.9874 21.0732 16.5126 20.7803 16.2197L16.7803 12.2197C16.4874 11.9268 16.0126 11.9268 15.7197 12.2197C15.4268 12.5126 15.4268 12.9874 15.7197 13.2803L18.4393 16H3.75C3.33579 16 3 16.3358 3 16.75C3 17.1642 3.33579 17.5 3.75 17.5H18.4393L15.7197 20.2197C15.4268 20.5126 15.4268 20.9874 15.7197 21.2803ZM8.28033 11.7803C8.57322 11.4874 8.57322 11.0126 8.28033 10.7197L5.56066 8L20.25 8C20.6642 8 21 7.66421 21 7.25C21 6.83579 20.6642 6.5 20.25 6.5L5.56066 6.5L8.28033 3.78033C8.57322 3.48744 8.57322 3.01256 8.28033 2.71967C7.98744 2.42678 7.51256 2.42678 7.21967 2.71967L3.21967 6.71967C2.92678 7.01256 2.92678 7.48744 3.21967 7.78033L7.21967 11.7803C7.51256 12.0732 7.98744 12.0732 8.28033 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,gBAAg7B,EAAh7B,IAAqB,EAAO,UAAU,+CAA8C,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,uxBAAuxB,KAAK,eAAc,CAAI,GAG16B",
  "debugId": "34F478229579741264756E2164756E21",
  "names": []
}