{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPaintBucketDrop/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 IconPaintBucketDrop: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"paint-bucket-drop\"><path d=\"M19.9491 16.262C20.1213 16.1038 20.3785 16.1038 20.5507 16.262C21.1635 16.8252 22.4998 18.2126 22.4999 19.5999C22.4999 20.9254 21.4925 22.0003 20.2499 22.0003C19.0072 22.0003 17.9999 20.9254 17.9999 19.5999C18 18.2126 19.3363 16.8252 19.9491 16.262Z\" fill=\"currentColor\"/><path d=\"M10.8065 2.25028C11.0221 2.23601 11.2338 2.31627 11.3866 2.46903L21.286 12.3684L21.3397 12.428C21.4571 12.5738 21.5172 12.7599 21.5048 12.9485C21.4903 13.1639 21.3822 13.3632 21.2108 13.4944L11.2772 21.0921C9.78443 22.2332 7.67642 22.0924 6.34754 20.764L2.9911 17.4075C1.66255 16.0787 1.52186 13.9707 2.66297 12.4778L4.62782 9.90751L10.6522 13.0638C11.019 13.2558 11.4727 13.114 11.6649 12.7474C11.8408 12.4111 11.7356 12.0031 11.4345 11.7893L2.3993 7.05595C2.03274 6.86378 1.8912 6.41097 2.08289 6.04423C2.27503 5.67743 2.72776 5.53591 3.09461 5.72782L6.47157 7.49638L10.2606 2.54423C10.3919 2.37272 10.591 2.26466 10.8065 2.25028Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPaintBucketDrop;\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,EAAsD,CAAC,IAAU,CAC5E,OAAO,gBAA6+B,EAA7+B,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,EAAE,4PAA4P,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,2nBAA2nB,KAAK,eAAc,CAAI,GAGv+B",
  "debugId": "E6A1BAC6F583344564756E2164756E21",
  "names": []
}