{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBooleanGroupExclude/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 IconBooleanGroupExclude: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"boolean-group-exclude\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M16 16H18C20.2091 16 22 14.2091 22 12V6C22 3.79086 20.2091 2 18 2H12C9.79086 2 8 3.79086 8 6V8H6C3.79086 8 2 9.79086 2 12V18C2 20.2091 3.79086 22 6 22H12C14.2091 22 16 20.2091 16 18V16ZM8 8H12C14.2091 8 16 9.79086 16 12V16H12C9.79086 16 8 14.2091 8 12V8Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBooleanGroupExclude;\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,EAA0D,CAAC,IAAU,CAChF,OAAO,gBAAoY,EAApY,IAAqB,EAAO,UAAU,yBAAwB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,iQAAiQ,KAAK,eAAc,CAAI,GAG9X",
  "debugId": "B6D6178A850D945F64756E2164756E21",
  "names": []
}