{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSquareArrowDown/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 IconSquareArrowDown: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"square-arrow-down, download square, save\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3 3.75C3 3.33579 3.33579 3 3.75 3H20.25C20.6642 3 21 3.33579 21 3.75V20.25C21 20.6642 20.6642 21 20.25 21H3.75C3.33579 21 3 20.6642 3 20.25V3.75ZM8.75 17C8.33579 17 8 16.6642 8 16.25C8 15.8358 8.33579 15.5 8.75 15.5H15.25C15.6642 15.5 16 15.8358 16 16.25C16 16.6642 15.6642 17 15.25 17H8.75ZM14.7803 11.7803L12.5303 14.0303C12.2374 14.3232 11.7626 14.3232 11.4697 14.0303L9.21967 11.7803C8.92678 11.4874 8.92678 11.0126 9.21967 10.7197C9.51256 10.4268 9.98744 10.4268 10.2803 10.7197L11.25 11.6893V7.75C11.25 7.33579 11.5858 7 12 7C12.4142 7 12.75 7.33579 12.75 7.75V11.6893L13.7197 10.7197C14.0126 10.4268 14.4874 10.4268 14.7803 10.7197C15.0732 11.0126 15.0732 11.4874 14.7803 11.7803Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconSquareArrowDown;\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,EAAsD,CAAC,IAAU,CAC5E,OAAO,gBAAy0B,EAAz0B,IAAqB,EAAO,UAAU,4CAA2C,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mrBAAmrB,KAAK,eAAc,CAAI,GAGn0B",
  "debugId": "95FBF8CE28AA30DE64756E2164756E21",
  "names": []
}