{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconArrowWallUp/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 IconArrowWallUp: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"arrow-wall-up, align top\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4 2.75C4 2.33579 4.33579 2 4.75 2H19.25C19.6642 2 20 2.33579 20 2.75C20 3.16421 19.6642 3.5 19.25 3.5H4.75C4.33579 3.5 4 3.16421 4 2.75ZM12 6C12.1989 6 12.3897 6.07902 12.5303 6.21967L16.7803 10.4697C17.0732 10.7626 17.0732 11.2374 16.7803 11.5303C16.4874 11.8232 16.0126 11.8232 15.7197 11.5303L12.75 8.56067V21.25C12.75 21.6642 12.4142 22 12 22C11.5858 22 11.25 21.6642 11.25 21.25V8.56065L8.28033 11.5303C7.98743 11.8232 7.51256 11.8232 7.21967 11.5303C6.92678 11.2374 6.92678 10.7626 7.21967 10.4697L11.4697 6.21967C11.6103 6.07902 11.8011 6 12 6Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconArrowWallUp;\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,gBAAirB,EAAjrB,IAAqB,EAAO,UAAU,4BAA2B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2iBAA2iB,KAAK,eAAc,CAAI,GAG3qB",
  "debugId": "7005783F0AEDEB9A64756E2164756E21",
  "names": []
}