{
  "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=\"M6.71967 3.21967C7.01256 2.92678 7.48744 2.92678 7.78033 3.21967L11.7803 7.21967C12.0732 7.51256 12.0732 7.98744 11.7803 8.28033C11.4874 8.57322 11.0126 8.57322 10.7197 8.28033L8 5.56066V20.25C8 20.6642 7.66421 21 7.25 21C6.83579 21 6.5 20.6642 6.5 20.25V5.56066L3.78033 8.28033C3.48744 8.57322 3.01256 8.57322 2.71967 8.28033C2.42678 7.98744 2.42678 7.51256 2.71967 7.21967L6.71967 3.21967ZM16.75 3C17.1642 3 17.5 3.33579 17.5 3.75V18.4393L20.2197 15.7197C20.5126 15.4268 20.9874 15.4268 21.2803 15.7197C21.5732 16.0126 21.5732 16.4874 21.2803 16.7803L17.2803 20.7803C16.9874 21.0732 16.5126 21.0732 16.2197 20.7803L12.2197 16.7803C11.9268 16.4874 11.9268 16.0126 12.2197 15.7197C12.5126 15.4268 12.9874 15.4268 13.2803 15.7197L16 18.4393V3.75C16 3.33579 16.3358 3 16.75 3Z\" 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,gBAAg6B,EAAh6B,IAAqB,EAAO,UAAU,6CAA4C,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ywBAAywB,KAAK,eAAc,CAAI,GAG15B",
  "debugId": "B5EA05001F51418B64756E2164756E21",
  "names": []
}