{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBooleanGroupIntersect2/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 IconBooleanGroupIntersect2: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"boolean-group-intersect-2\"><path d=\"M11 3.5C10.1716 3.5 9.5 4.17157 9.5 5C9.5 5.41421 9.16421 5.75 8.75 5.75C8.33579 5.75 8 5.41421 8 5C8 3.34315 9.34315 2 11 2C11.4142 2 11.75 2.33579 11.75 2.75C11.75 3.16421 11.4142 3.5 11 3.5Z\" fill=\"currentColor\"/><path d=\"M13.25 2.75C13.25 2.33579 13.5858 2 14 2H16C16.4142 2 16.75 2.33579 16.75 2.75C16.75 3.16421 16.4142 3.5 16 3.5H14C13.5858 3.5 13.25 3.16421 13.25 2.75Z\" fill=\"currentColor\"/><path d=\"M18.25 2.75C18.25 2.33579 18.5858 2 19 2C20.6569 2 22 3.34315 22 5C22 5.41421 21.6642 5.75 21.25 5.75C20.8358 5.75 20.5 5.41421 20.5 5C20.5 4.17157 19.8284 3.5 19 3.5C18.5858 3.5 18.25 3.16421 18.25 2.75Z\" fill=\"currentColor\"/><path d=\"M21.25 7.25C21.6642 7.25 22 7.58579 22 8V10C22 10.4142 21.6642 10.75 21.25 10.75C20.8358 10.75 20.5 10.4142 20.5 10V8C20.5 7.58579 20.8358 7.25 21.25 7.25Z\" fill=\"currentColor\"/><path d=\"M14.7995 9C14.1305 8.37941 13.2345 8 12.25 8H8.75C8.33579 8 8 8.33579 8 8.75V12.25C8 13.2345 8.37941 14.1305 9 14.7995L9.20047 15C9.86953 15.6206 10.7655 16 11.75 16H15.25C15.6642 16 16 15.6642 16 15.25V11.75C16 10.7655 15.6206 9.86953 15 9.20047L14.7995 9Z\" fill=\"currentColor\"/><path d=\"M21.25 12.25C21.6642 12.25 22 12.5858 22 13C22 14.6569 20.6569 16 19 16C18.5858 16 18.25 15.6642 18.25 15.25C18.25 14.8358 18.5858 14.5 19 14.5C19.8284 14.5 20.5 13.8284 20.5 13C20.5 12.5858 20.8358 12.25 21.25 12.25Z\" fill=\"currentColor\"/><path d=\"M3.5 11C3.5 10.1716 4.17157 9.5 5 9.5C5.41421 9.5 5.75 9.16421 5.75 8.75C5.75 8.33579 5.41421 8 5 8C3.34315 8 2 9.34315 2 11C2 11.4142 2.33579 11.75 2.75 11.75C3.16421 11.75 3.5 11.4142 3.5 11Z\" fill=\"currentColor\"/><path d=\"M3.5 14C3.5 13.5858 3.16421 13.25 2.75 13.25C2.33579 13.25 2 13.5858 2 14V16C2 16.4142 2.33579 16.75 2.75 16.75C3.16421 16.75 3.5 16.4142 3.5 16V14Z\" fill=\"currentColor\"/><path d=\"M3.5 19C3.5 18.5858 3.16421 18.25 2.75 18.25C2.33579 18.25 2 18.5858 2 19C2 20.6569 3.34315 22 5 22C5.41421 22 5.75 21.6642 5.75 21.25C5.75 20.8358 5.41421 20.5 5 20.5C4.17157 20.5 3.5 19.8284 3.5 19Z\" fill=\"currentColor\"/><path d=\"M16 19C16 18.5858 15.6642 18.25 15.25 18.25C14.8358 18.25 14.5 18.5858 14.5 19C14.5 19.8284 13.8284 20.5 13 20.5C12.5858 20.5 12.25 20.8358 12.25 21.25C12.25 21.6642 12.5858 22 13 22C14.6569 22 16 20.6569 16 19Z\" fill=\"currentColor\"/><path d=\"M8 20.5C7.58579 20.5 7.25 20.8358 7.25 21.25C7.25 21.6642 7.58579 22 8 22H10C10.4142 22 10.75 21.6642 10.75 21.25C10.75 20.8358 10.4142 20.5 10 20.5H8Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBooleanGroupIntersect2;\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,EAA6D,CAAC,IAAU,CACnF,OAAO,gBAAq8E,EAAr8E,IAAqB,EAAO,UAAU,6BAA4B,gBAAC,OAAD,CAAM,EAAE,oMAAoM,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,2JAA2J,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+MAA+M,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8JAA8J,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oQAAoQ,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,4NAA4N,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oMAAoM,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,uJAAuJ,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,2MAA2M,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,sNAAsN,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,0JAA0J,KAAK,eAAc,CAAI,GAG/7E",
  "debugId": "BBC1ADF97D7EF39B64756E2164756E21",
  "names": []
}