{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconArrowBottomTop/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 IconArrowBottomTop: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"arrow-bottom-top, sort 2, switch vertical\"><path d=\"M17.2499 21C16.8399 21 16.4999 20.66 16.4999 20.25V5.06L13.7799 7.78C13.4899 8.07 13.0099 8.07 12.7199 7.78C12.4299 7.49 12.4299 7.01 12.7199 6.72L15.6599 3.78C16.5399 2.9 17.9599 2.9 18.8399 3.78L21.7799 6.72C22.0699 7.01 22.0699 7.49 21.7799 7.78C21.4899 8.07 21.0099 8.07 20.7199 7.78L17.9999 5.06V20.25C17.9999 20.66 17.6599 21 17.2499 21ZM7.74994 20.88C7.14994 20.88 6.57994 20.65 6.15994 20.22L3.21994 17.28C2.92994 16.99 2.92994 16.51 3.21994 16.22C3.50994 15.93 3.98994 15.93 4.27994 16.22L6.99994 18.94V3.75C6.99994 3.34 7.33994 3 7.74994 3C8.15994 3 8.49994 3.34 8.49994 3.75V18.94L11.2199 16.22C11.5099 15.93 11.9899 15.93 12.2799 16.22C12.5699 16.51 12.5699 16.99 12.2799 17.28L9.33994 20.22C8.91994 20.64 8.34994 20.88 7.74994 20.88Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconArrowBottomTop;\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,gBAA81B,EAA91B,IAAqB,EAAO,UAAU,6CAA4C,gBAAC,OAAD,CAAM,EAAE,6uBAA6uB,KAAK,eAAc,CAAI,GAGx1B",
  "debugId": "D465CB5512F30F9B64756E2164756E21",
  "names": []
}