{
  "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.2617C20.1214 16.1036 20.3786 16.1036 20.5508 16.2617C21.1636 16.8249 22.5 18.2132 22.5 19.6006C22.4998 20.9258 21.4925 22 20.25 22C19.0075 22 18.0002 20.9258 18 19.6006C18 18.2132 19.3364 16.8249 19.9492 16.2617Z\" fill=\"currentColor\"/><path d=\"M9.87304 3.3154C10.8905 2.01569 12.8172 1.89922 13.9844 3.06638L20.6894 9.77145C21.8564 10.9387 21.7391 12.8644 20.4394 13.8818L11.2891 21.0449C9.79648 22.2129 7.66647 22.0831 6.32617 20.7431L3.01171 17.4287C1.67192 16.0884 1.54308 13.9593 2.71093 12.4668L4.68847 9.93942L10.6523 13.0634C11.0192 13.2556 11.4728 13.1139 11.665 12.747C11.8418 12.4092 11.735 11.9991 11.4307 11.7861L2.40039 7.05563C2.03351 6.86346 1.8919 6.41081 2.08398 6.04392C2.27621 5.67717 2.72886 5.53546 3.0957 5.72751L6.5625 7.54294L9.87304 3.3154Z\" 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,gBAAq2B,EAAr2B,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,EAAE,mOAAmO,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,4gBAA4gB,KAAK,eAAc,CAAI,GAG/1B",
  "debugId": "933838357420A7B764756E2164756E21",
  "names": []
}