{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCursor3/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 IconCursor3: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"cursor-3, arrow\"><path d=\"M3.49383 2.54076C3.22279 2.44759 2.92235 2.51703 2.71969 2.71969C2.51703 2.92235 2.44759 3.22279 2.54076 3.49383L8.04076 19.4938C8.12485 19.7385 8.32908 19.9225 8.58112 19.9808C8.83316 20.039 9.09743 19.9633 9.28035 19.7804L11.75 17.3107L16.2197 21.7804C16.5126 22.0732 16.9875 22.0732 17.2804 21.7804L21.7804 17.2804C22.0732 16.9875 22.0732 16.5126 21.7804 16.2197L17.3107 11.75L19.7804 9.28035C19.9633 9.09743 20.039 8.83316 19.9808 8.58112C19.9225 8.32908 19.7385 8.12485 19.4938 8.04076L3.49383 2.54076Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCursor3;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAAqlB,EAArlB,IAAqB,EAAO,UAAU,mBAAkB,gBAAC,OAAD,CAAM,EAAE,8fAA8f,KAAK,eAAc,CAAI,GAG/kB",
  "debugId": "07A17DCF91D5481464756E2164756E21",
  "names": []
}