{
  "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.59471 19.1131C9.37391 19.3337 9.0981 19.4919 8.79588 19.5701L7.02146 20.0291C6.71847 20.1075 6.44173 20.2655 6.22068 20.4871L6.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.51463 17.7801C3.73431 17.5599 3.89055 17.2843 3.96873 16.9832L4.43064 15.2039C4.50901 14.9021 4.66721 14.6265 4.88768 14.406L10.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.4219 9.19315C19.1503 9.51025 19.001 9.91434 19.001 10.3318V10.9822C19.0008 11.4462 18.8163 11.8914 18.4883 12.2195L18.2383 12.4695C17.5549 13.1526 16.447 13.1527 15.7637 12.4695L11.5312 8.2371C10.8479 7.55375 10.8481 6.44591 11.5312 5.76249L11.7812 5.51249C12.1094 5.18437 12.5545 4.99987 13.0185 4.99979H13.6699C14.0877 4.99978 14.4914 4.84983 14.8086 4.57792L15.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,gBAAuiC,EAAviC,IAAqB,EAAO,UAAU,0DAAyD,gBAAC,OAAD,CAAM,EAAE,6ZAA6Z,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+eAA+e,KAAK,eAAc,CAAI,GAGjiC",
  "debugId": "E7E14967A483185E64756E2164756E21",
  "names": []
}