{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconArrowPathUp/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 IconArrowPathUp: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"arrow-path-up\"><path d=\"M4.17939 9.76329C3.98952 9.98589 3.94643 10.2986 4.06901 10.5642C4.19158 10.8299 4.45744 11 4.75001 11H8.00001V21.25C8.00001 21.6642 8.3358 22 8.75001 22H15.25C15.6642 22 16 21.6642 16 21.25V11H19.25C19.5426 11 19.8084 10.8299 19.931 10.5642C20.0536 10.2986 20.0105 9.98589 19.8206 9.76329L12.5706 1.26329C12.4281 1.09623 12.2196 1 12 1C11.7804 1 11.5719 1.09623 11.4294 1.26329L4.17939 9.76329Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconArrowPathUp;\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,gBAAme,EAAne,IAAqB,EAAO,UAAU,iBAAgB,gBAAC,OAAD,CAAM,EAAE,8YAA8Y,KAAK,eAAc,CAAI,GAG7d",
  "debugId": "9627C8573CF54DF164756E2164756E21",
  "names": []
}