{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBroom/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 IconBroom: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"broom, brush, clear, clean\"><path d=\"M19.5076 2.28125C20.8461 3.0232 21.3289 4.71026 20.5855 6.04799L17.8148 11.0342L17.9285 11.097C19.7422 12.0994 20.3997 14.3833 19.3929 16.1946C19.3675 16.2403 19.3421 16.286 19.3167 16.3317C19.1157 16.6932 18.6598 16.8235 18.298 16.623L7.90606 10.8626C7.54344 10.6616 7.4127 10.2045 7.61419 9.8422L7.68619 9.71272C8.69084 7.90599 10.9681 7.25308 12.7775 8.25303L12.9337 8.33938L15.7536 3.34222C16.5012 2.01755 18.1772 1.54384 19.5076 2.28125Z\" fill=\"currentColor\"/><path d=\"M7.58444 11.9141C7.13469 12.2793 6.6794 12.527 6.20939 12.681C5.43579 12.9344 4.5332 12.963 3.41153 12.7249C2.73006 12.5803 2.11081 13.1601 2.21455 13.849C2.78886 17.6629 6.29574 20.65 9.69242 21.5749C11.4167 22.0444 13.2678 22.0292 14.8012 21.182C16.1208 20.4529 17.0691 19.1836 17.5061 17.401L7.58444 11.9141Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBroom;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAs3B,EAAt3B,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,EAAE,6bAA6b,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,0TAA0T,KAAK,eAAc,CAAI,GAGh3B",
  "debugId": "D39CB4DBAF842B3F64756E2164756E21",
  "names": []
}