{
  "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.6893L20.2197 15.9697C20.5126 15.6768 20.9874 15.6768 21.2803 15.9697C21.5732 16.2626 21.5732 16.7374 21.2803 17.0303L17.8107 20.5C17.2249 21.0858 16.2751 21.0858 15.6893 20.5L12.2197 17.0303C11.9268 16.7374 11.9268 16.2626 12.2197 15.9697C12.5126 15.6768 12.9874 15.6768 13.2803 15.9697L16 18.6893V3.75C16 3.33579 16.3358 3 16.75 3ZM6.18934 3.5C6.77513 2.91421 7.72487 2.91421 8.31066 3.5L7.78033 4.03033L8.31066 3.5L11.7803 6.96967C12.0732 7.26256 12.0732 7.73744 11.7803 8.03033C11.4874 8.32322 11.0126 8.32322 10.7197 8.03033L8 5.31066V20.25C8 20.6642 7.66421 21 7.25 21C6.83579 21 6.5 20.6642 6.5 20.25V5.31066L3.78033 8.03033C3.48744 8.32322 3.01256 8.32322 2.71967 8.03033C2.42678 7.73744 2.42678 7.26256 2.71967 6.96967L6.18934 3.5L6.71967 4.03033L6.18934 3.5Z\" 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,gBAAs8B,EAAt8B,IAAqB,EAAO,UAAU,6CAA4C,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+yBAA+yB,KAAK,eAAc,CAAI,GAGh8B",
  "debugId": "16CCC97402F484D764756E2164756E21",
  "names": []
}