{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconToiletPaper/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 IconToiletPaper: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"toilet-paper, wipe\"><path d=\"M20.25 20.25H10.25V16.25H7C8.79493 16.25 10.25 13.4518 10.25 10C10.25 6.54822 8.79493 3.75 7 3.75H17.25C18.9069 3.75 20.25 6.43629 20.25 9.75V20.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M10.25 10C10.25 13.4518 8.79493 16.25 7 16.25C5.20507 16.25 3.75 13.4518 3.75 10C3.75 6.54822 5.20507 3.75 7 3.75C8.79493 3.75 10.25 6.54822 10.25 10Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M10.25 10V16.25\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M7 16.25H6.75\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M7.75 10C7.75 10.6904 7.41421 11.25 7 11.25C6.58579 11.25 6.25 10.6904 6.25 10C6.25 9.30964 6.58579 8.75 7 8.75C7.41421 8.75 7.75 9.30964 7.75 10Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconToiletPaper;\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,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAAqwB,EAArwB,IAAqB,EAAO,UAAU,sBAAqB,gBAAC,OAAD,CAAM,EAAE,uJAAuJ,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,yJAAyJ,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,kBAAkB,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,qJAAqJ,KAAK,eAAc,CAAI,GAG/vB",
  "debugId": "824AF3EBBE4F26D764756E2164756E21",
  "names": []
}