{
  "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.0342L19.6804 12.0652C20.5268 12.533 20.8335 13.5987 20.3645 14.4444C20.0155 15.0737 19.6663 15.7028 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.8422L8.65562 7.96932C9.12446 7.12618 10.1872 6.82149 11.0316 7.28813L12.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,gBAAu3B,EAAv3B,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,EAAE,8bAA8b,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,0TAA0T,KAAK,eAAc,CAAI,GAGj3B",
  "debugId": "DCFB36C6598CB36464756E2164756E21",
  "names": []
}