{
  "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.0342L20.5564 12.5493C20.9191 12.7498 21.0505 13.2065 20.8497 13.5691C20.3393 14.4903 19.8285 15.4112 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.8422L9.14034 7.09762C9.34127 6.73627 9.79673 6.60569 10.1586 6.80568L12.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,gBAAw3B,EAAx3B,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,EAAE,+bAA+b,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,0TAA0T,KAAK,eAAc,CAAI,GAGl3B",
  "debugId": "D813BB16EE5834BA64756E2164756E21",
  "names": []
}