{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconArrowCornerDownRight/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 IconArrowCornerDownRight: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"arrow-corner-down-right\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3.75 4C4.16421 4 4.5 4.33579 4.5 4.75V14.25C4.5 14.3881 4.61193 14.5 4.75 14.5H18.4393L15.7197 11.7803C15.4268 11.4874 15.4268 11.0126 15.7197 10.7197C16.0126 10.4268 16.4874 10.4268 16.7803 10.7197L20.7803 14.7197C21.0732 15.0126 21.0732 15.4874 20.7803 15.7803L16.7803 19.7803C16.4874 20.0732 16.0126 20.0732 15.7197 19.7803C15.4268 19.4874 15.4268 19.0126 15.7197 18.7197L18.4393 16H4.75C3.7835 16 3 15.2165 3 14.25V4.75C3 4.33579 3.33579 4 3.75 4Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconArrowCornerDownRight;\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,EAA2D,CAAC,IAAU,CACjF,OAAO,gBAA4kB,EAA5kB,IAAqB,EAAO,UAAU,2BAA0B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ucAAuc,KAAK,eAAc,CAAI,GAGtkB",
  "debugId": "3B26E43C7128760364756E2164756E21",
  "names": []
}