{
  "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.4393L10.7197 15.7197C11.0126 15.4268 11.4874 15.4268 11.7803 15.7197C12.0732 16.0126 12.0732 16.4874 11.7803 16.7803L7.78033 20.7803C7.48744 21.0732 7.01256 21.0732 6.71967 20.7803L2.71967 16.7803C2.42678 16.4874 2.42678 16.0126 2.71967 15.7197C3.01256 15.4268 3.48744 15.4268 3.78033 15.7197L6.5 18.4393V3.75C6.5 3.33579 6.83579 3 7.25 3ZM16.2197 3.21967C16.5126 2.92678 16.9874 2.92678 17.2803 3.21967L21.2803 7.21967C21.5732 7.51256 21.5732 7.98744 21.2803 8.28033C20.9874 8.57322 20.5126 8.57322 20.2197 8.28033L17.5 5.56066V20.25C17.5 20.6642 17.1642 21 16.75 21C16.3358 21 16 20.6642 16 20.25V5.56066L13.2803 8.28033C12.9874 8.57322 12.5126 8.57322 12.2197 8.28033C11.9268 7.98744 11.9268 7.51256 12.2197 7.21967L16.2197 3.21967Z\" 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,gBAA+5B,EAA/5B,IAAqB,EAAO,UAAU,6CAA4C,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,wwBAAwwB,KAAK,eAAc,CAAI,GAGz5B",
  "debugId": "4552FF93EF1C408C64756E2164756E21",
  "names": []
}