{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPoop/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 IconPoop: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"poop, spam\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.25 3.74999C12.25 2.83863 13.0331 1.88358 14.1482 2.11914C16.2921 2.57203 18 4.30838 18 6.49999C18 7.46033 17.669 8.33662 17.118 9.05439C18.7562 9.34625 20 10.7779 20 12.5C20 13.1044 19.8466 13.673 19.5771 14.1689C20.9831 14.6231 22 15.9428 22 17.5C22 19.433 20.433 21 18.5 21H5.5C3.567 21 2 19.433 2 17.5C2 15.9428 3.01693 14.6231 4.4229 14.1689C4.15338 13.673 4 13.1044 4 12.5C4 10.9428 5.01693 9.62313 6.4229 9.16886C6.15338 8.67295 6 8.10439 6 7.49999C6 5.567 7.567 3.99999 9.5 3.99999H12C12.1381 3.99999 12.25 3.88807 12.25 3.74999ZM10.75 9C10.3358 9 10 9.33579 10 9.75C10 10.1642 10.3358 10.5 10.75 10.5H12.25C12.6642 10.5 13 10.1642 13 9.75C13 9.33579 12.6642 9 12.25 9H10.75ZM13.75 14C13.3358 14 13 14.3358 13 14.75C13 15.1642 13.3358 15.5 13.75 15.5H15.25C15.6642 15.5 16 15.1642 16 14.75C16 14.3358 15.6642 14 15.25 14H13.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPoop;\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,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAAi8B,EAAj8B,IAAqB,EAAO,UAAU,cAAa,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,y0BAAy0B,KAAK,eAAc,CAAI,GAG37B",
  "debugId": "9D2992BE37EE375564756E2164756E21",
  "names": []
}