{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconArrowUpWall/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 IconArrowUpWall: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"arrow-up-wall\"><path d=\"M19.25 19.4999C19.6642 19.4999 20 19.8357 20 20.2499C20 20.6641 19.6642 20.9999 19.25 20.9999H4.75C4.33581 20.9999 4.00003 20.6641 4 20.2499C4 19.8357 4.33579 19.4999 4.75 19.4999H19.25Z\" fill=\"currentColor\"/><path d=\"M11.4697 3.21967C11.7626 2.92678 12.2374 2.92678 12.5303 3.21967L17.0303 7.71967C17.3231 8.01257 17.3232 8.48733 17.0303 8.78022C16.7374 9.07307 16.2626 9.07307 15.9697 8.78022L12.75 5.56049V16.2499C12.75 16.6641 12.4142 16.9999 12 16.9999C11.5858 16.9999 11.25 16.6641 11.25 16.2499V5.56049L8.03027 8.78022C7.73739 9.07307 7.26261 9.07307 6.96973 8.78022C6.67684 8.48733 6.67686 8.01257 6.96973 7.71967L11.4697 3.21967Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconArrowUpWall;\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,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAAstB,EAAttB,IAAqB,EAAO,UAAU,iBAAgB,gBAAC,OAAD,CAAM,EAAE,6LAA6L,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,uaAAua,KAAK,eAAc,CAAI,GAGhtB",
  "debugId": "5F101FC145616A1064756E2164756E21",
  "names": []
}