{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSquareCursor/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 IconSquareCursor: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"square-cursor, cursor box, arrow\"><path d=\"M6.75 3C4.67893 3 3 4.67893 3 6.75V17.25C3 19.3211 4.67893 21 6.75 21H10.75C11.1642 21 11.5 20.6642 11.5 20.25C11.5 19.8358 11.1642 19.5 10.75 19.5H6.75C5.50736 19.5 4.5 18.4926 4.5 17.25V6.75C4.5 5.50736 5.50736 4.5 6.75 4.5H17.25C18.4926 4.5 19.5 5.50736 19.5 6.75V10.75C19.5 11.1642 19.8358 11.5 20.25 11.5C20.6642 11.5 21 11.1642 21 10.75V6.75C21 4.67893 19.3211 3 17.25 3H6.75Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M13.2008 11.3624C12.0852 11.0631 11.0641 12.0842 11.3634 13.1999L13.4644 21.0309C13.7527 22.1056 15.196 22.2963 15.7535 21.3333L17.7998 17.7988L21.3342 15.7525C22.2972 15.195 22.1066 13.7517 21.0319 13.4634L13.2008 11.3624ZM12.8121 12.8112L20.0615 14.7561L17.0482 16.5006C16.8214 16.632 16.6329 16.8204 16.5016 17.0472L14.7571 20.0605L12.8121 12.8112Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconSquareCursor;\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,EAAmD,CAAC,IAAU,CACzE,OAAO,gBAA84B,EAA94B,IAAqB,EAAO,UAAU,oCAAmC,gBAAC,OAAD,CAAM,EAAE,iYAAiY,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,kWAAkW,KAAK,eAAc,CAAI,GAGx4B",
  "debugId": "FEB062BFF55135D464756E2164756E21",
  "names": []
}