{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconArrowTopBottom/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 IconArrowTopBottom: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"arrow-top-bottom, sort 1, switch vertical\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M16.75 3C17.1642 3 17.5 3.33579 17.5 3.75V18.9393L20.2197 16.2197C20.5126 15.9268 20.9874 15.9268 21.2803 16.2197C21.5732 16.5126 21.5732 16.9874 21.2803 17.2803L18.341 20.2197C17.4623 21.0983 16.0377 21.0984 15.159 20.2197L12.2197 17.2803C11.9268 16.9874 11.9268 16.5126 12.2197 16.2197C12.5126 15.9268 12.9874 15.9268 13.2803 16.2197L16 18.9393V3.75C16 3.33579 16.3358 3 16.75 3ZM5.65901 3.78033C6.53769 2.90165 7.96231 2.90165 8.84099 3.78033L11.7803 6.71967C12.0732 7.01256 12.0732 7.48744 11.7803 7.78033C11.4874 8.07322 11.0126 8.07322 10.7197 7.78033L8 5.06066V20.25C8 20.6642 7.66421 21 7.25 21C6.83579 21 6.5 20.6642 6.5 20.25V5.06066L3.78033 7.78033C3.48744 8.07322 3.01256 8.07322 2.71967 7.78033C2.42678 7.48744 2.42678 7.01256 2.71967 6.71967L5.65901 3.78033L6.18934 4.31066L5.65901 3.78033Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconArrowTopBottom;\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,gBAA87B,EAA97B,IAAqB,EAAO,UAAU,6CAA4C,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,uyBAAuyB,KAAK,eAAc,CAAI,GAGx7B",
  "debugId": "02164856BAABB91064756E2164756E21",
  "names": []
}