{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSquareArrowInTopLeft/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 IconSquareArrowInTopLeft: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"square-arrow-in-top-left, dock, box, arrow\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2.96967 2.96967C3.26256 2.67678 3.73744 2.67678 4.03033 2.96967L9.5 8.43934V3.75C9.5 3.33579 9.83579 3 10.25 3C10.6642 3 11 3.33579 11 3.75V9.25C11 10.2165 10.2165 11 9.25 11L3.75 11C3.33579 11 3 10.6642 3 10.25C3 9.83579 3.33579 9.5 3.75 9.5L8.43934 9.5L2.96967 4.03033C2.67678 3.73744 2.67678 3.26256 2.96967 2.96967ZM13 6.75C13 6.33579 13.3358 6 13.75 6H18.25C20.3211 6 22 7.67893 22 9.75V18.25C22 20.3211 20.3211 22 18.25 22H9.75C7.67893 22 6 20.3211 6 18.25V13.75C6 13.3358 6.33579 13 6.75 13C7.16421 13 7.5 13.3358 7.5 13.75V18.25C7.5 19.4926 8.50736 20.5 9.75 20.5H18.25C19.4926 20.5 20.5 19.4926 20.5 18.25V9.75C20.5 8.50736 19.4926 7.5 18.25 7.5H13.75C13.3358 7.5 13 7.16421 13 6.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconSquareArrowInTopLeft;\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,gBAAg1B,EAAh1B,IAAqB,EAAO,UAAU,8CAA6C,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,wrBAAwrB,KAAK,eAAc,CAAI,GAG10B",
  "debugId": "0A8F4316456E456264756E2164756E21",
  "names": []
}