{
  "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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M7.25 3C7.66421 3 8 3.33579 8 3.75V18.6893L10.7197 15.9697C11.0126 15.6768 11.4874 15.6768 11.7803 15.9697C12.0732 16.2626 12.0732 16.7374 11.7803 17.0303L8.31066 20.5C7.72487 21.0858 6.77512 21.0858 6.18934 20.5L2.71967 17.0303C2.42678 16.7374 2.42678 16.2626 2.71967 15.9697C3.01256 15.6768 3.48744 15.6768 3.78033 15.9697L6.5 18.6893V3.75C6.5 3.33579 6.83579 3 7.25 3ZM15.6893 3.5C16.2751 2.91421 17.2249 2.91421 17.8107 3.5L21.2803 6.96967C21.5732 7.26256 21.5732 7.73744 21.2803 8.03033C20.9874 8.32322 20.5126 8.32322 20.2197 8.03033L17.5 5.31066V20.25C17.5 20.6642 17.1642 21 16.75 21C16.3358 21 16 20.6642 16 20.25V5.31066L13.2803 8.03033C12.9874 8.32322 12.5126 8.32322 12.2197 8.03033C11.9268 7.73744 11.9268 7.26256 12.2197 6.96967L15.6893 3.5Z\" 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,gBAA64B,EAA74B,IAAqB,EAAO,UAAU,6CAA4C,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,svBAAsvB,KAAK,eAAc,CAAI,GAGv4B",
  "debugId": "BF2229B1A14BC14564756E2164756E21",
  "names": []
}