{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconArrowDownWall/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 IconArrowDownWall: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"arrow-down-wall\"><path d=\"M12 7C12.4142 7 12.75 7.33579 12.75 7.75V18.4395L15.9697 15.2197C16.2626 14.9268 16.7374 14.9268 17.0303 15.2197C17.3232 15.5126 17.3232 15.9874 17.0303 16.2803L12.5303 20.7803C12.2374 21.0732 11.7626 21.0732 11.4697 20.7803L6.96973 16.2803C6.67683 15.9874 6.67683 15.5126 6.96973 15.2197C7.26262 14.9268 7.73738 14.9268 8.03027 15.2197L11.25 18.4395V7.75C11.25 7.33579 11.5858 7 12 7Z\" fill=\"currentColor\"/><path d=\"M19.25 3C19.6642 3 20 3.33579 20 3.75C20 4.16421 19.6642 4.5 19.25 4.5H4.75C4.33579 4.5 4 4.16421 4 3.75C4 3.33579 4.33579 3 4.75 3H19.25Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconArrowDownWall;\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,EAAoD,CAAC,IAAU,CAC1E,OAAO,gBAAqoB,EAAroB,IAAqB,EAAO,UAAU,mBAAkB,gBAAC,OAAD,CAAM,EAAE,oYAAoY,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,6IAA6I,KAAK,eAAc,CAAI,GAG/nB",
  "debugId": "D2E3E5EDB58EAFB364756E2164756E21",
  "names": []
}