{
  "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.9492 16.2619C20.1214 16.1037 20.3786 16.1037 20.5508 16.2619C21.1635 16.825 22.4998 18.2125 22.5 19.5998C22.5 20.9253 21.4926 22.0002 20.25 22.0002C19.0073 22.0002 18 20.9253 18 19.5998C18.0002 18.2125 19.3364 16.825 19.9492 16.2619Z\" fill=\"currentColor\"/><path d=\"M10.0693 2.93866C10.7147 2.10538 11.9451 2.0273 12.6904 2.77264L20.9834 11.0666C21.7282 11.812 21.6505 13.0425 20.8174 13.6877L11.2842 21.0676C9.79156 22.2227 7.67179 22.0882 6.33689 20.7541L3.0029 17.4201C1.66807 16.0853 1.53319 13.9647 2.68845 12.4719L4.66013 9.92401L10.6523 13.0637C11.0191 13.2557 11.4727 13.1139 11.665 12.7473C11.8407 12.4117 11.7371 12.0035 11.4375 11.7892L2.40036 7.05584C2.03349 6.86367 1.89187 6.41102 2.08396 6.04413C2.27614 5.67728 2.72879 5.53564 3.09567 5.72772L6.52048 7.52167L10.0693 2.93866Z\" 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,gBAAs3B,EAAt3B,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,EAAE,gPAAgP,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,ghBAAghB,KAAK,eAAc,CAAI,GAGh3B",
  "debugId": "1A9877C1B82EA5C864756E2164756E21",
  "names": []
}