{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconEyedropper/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 IconEyedropper: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"eyedropper, color-picker, pipette, suction-tube, labor\"><path d=\"M14.958 13.7498L9.40232 19.3055C9.30767 19.4001 9.18914 19.4682 9.05955 19.5017L6.75682 20.0975C6.62704 20.1311 6.50873 20.1988 6.41404 20.2937L6.15428 20.5535C5.40675 21.3009 4.19476 21.3009 3.44725 20.5535C2.69988 19.806 2.69987 18.594 3.44725 17.8465L3.70603 17.5877C3.80019 17.4933 3.86686 17.3749 3.90037 17.2459L4.49998 14.9402C4.53361 14.8111 4.60093 14.6928 4.69529 14.5984L10.251 9.04276L14.958 13.7498Z\" fill=\"currentColor\"/><path d=\"M15.7969 3.73124C17.0554 2.65253 18.9323 2.72427 20.1045 3.89628C21.2766 5.06844 21.3482 6.94527 20.2695 8.2039L19.1816 9.47343C19.0652 9.60935 19.001 9.78272 19.001 9.96171V11.3963C19.0009 11.5951 18.9218 11.786 18.7812 11.9266L17.5312 13.1766C17.2384 13.4693 16.7635 13.4693 16.4707 13.1766L10.8242 7.53007C10.5314 7.23722 10.5315 6.76243 10.8242 6.46952L12.0742 5.21952C12.2148 5.0789 12.4056 4.99983 12.6045 4.99979H14.04C14.219 4.99976 14.3924 4.93566 14.5283 4.81913L15.7969 3.73124Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconEyedropper;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAAsiC,EAAtiC,IAAqB,EAAO,UAAU,0DAAyD,gBAAC,OAAD,CAAM,EAAE,+ZAA+Z,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,4eAA4e,KAAK,eAAc,CAAI,GAGhiC",
  "debugId": "D7317396E7DB582A64756E2164756E21",
  "names": []
}