{
  "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=\"M3 3.75C3 3.33579 3.33579 3 3.75 3H20.25C20.6642 3 21 3.33579 21 3.75V10.75C21 11.1642 20.6642 11.5 20.25 11.5C19.8358 11.5 19.5 11.1642 19.5 10.75V4.5H4.5V19.5H10.75C11.1642 19.5 11.5 19.8358 11.5 20.25C11.5 20.6642 11.1642 21 10.75 21H3.75C3.33579 21 3 20.6642 3 20.25V3.75Z\" fill=\"currentColor\"/><path d=\"M11.9586 11.0296C11.696 10.9536 11.4129 11.0264 11.2197 11.2197C11.0264 11.4129 10.9536 11.696 11.0296 11.9586L13.7796 21.4586C13.8629 21.7463 14.1094 21.9568 14.4065 21.9942C14.7037 22.0315 14.9946 21.8884 15.1465 21.6303L17.5479 17.5479L21.6303 15.1465C21.8884 14.9946 22.0315 14.7037 21.9942 14.4065C21.9568 14.1094 21.7463 13.8629 21.4586 13.7796L11.9586 11.0296Z\" 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,gBAA8wB,EAA9wB,IAAqB,EAAO,UAAU,oCAAmC,gBAAC,OAAD,CAAM,EAAE,uRAAuR,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kXAAkX,KAAK,eAAc,CAAI,GAGxwB",
  "debugId": "91A65BA852FB1BF564756E2164756E21",
  "names": []
}