@central-icons-react/square-filled-radius-0-stroke-1
Version:
A collection of square filled React icons with 0px radius and 1px stroke width, designed for use in React applications.
1 lines • 3.24 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconToiletPaper/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconToiletPaper: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"toilet-paper, wipe\">\n <path\n d=\"M7 11.25C7.41421 11.25 7.75 10.6904 7.75 10C7.75 9.30964 7.41421 8.75 7 8.75C6.58579 8.75 6.25 9.30964 6.25 10C6.25 10.6904 6.58579 11.25 7 11.25Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M4.08489 14.8332C4.7537 16.0753 5.76143 17 7 17H10V21H21V9.5C21 7.78235 20.653 6.2026 20.0685 5.03375C19.4991 3.89481 18.6198 3 17.5 3H7C5.76143 3 4.7537 3.92469 4.08489 5.16676C3.40512 6.42919 3 8.13889 3 10C3 11.8611 3.40512 13.5708 4.08489 14.8332ZM4.96536 5.64086C4.37838 6.73096 4 8.27126 4 10C4 11.7287 4.37838 13.269 4.96536 14.3591C5.56331 15.4696 6.30558 16 7 16C7.69442 16 8.43669 15.4696 9.03464 14.3591C9.62162 13.269 10 11.7287 10 10C10 8.27126 9.62162 6.73096 9.03464 5.64086C8.43669 4.53038 7.69442 4 7 4C6.30558 4 5.56331 4.53038 4.96536 5.64086ZM9.94996 14.7677C9.96681 14.7355 9.9835 14.7031 10 14.6704V16H9.08797L9.10965 15.9769C9.41526 15.6497 9.68521 15.2602 9.91511 14.8332C9.92681 14.8115 9.93842 14.7897 9.94996 14.7677Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconToiletPaper;\n","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"],"mappings":"AAAA,OAAOA,MAAW,QCAlB,OAAOC,MAAW,QAQX,IAAMC,EAET,CAAC,CACH,SAAAC,EACA,KAAAC,EAAO,GACP,UAAAC,EACA,MAAAC,EACA,WAAAC,EAAa,GACb,MAAAC,EACA,GAAGC,CACL,IAEIR,EAAA,cAAC,OACE,GAAGQ,EACJ,cAAaF,EACb,KAAMA,EAAa,OAAY,MAC/B,MAAO,OAAOH,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,MAAAE,EAAO,GAAGE,CAAM,GAExBH,GAAa,CAACE,GAAcN,EAAA,cAAC,aAAOI,CAAU,EAC9CF,CACH,ED9BG,IAAMO,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,sBACpCC,EAAA,cAAC,QACC,EAAE,qJACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,2uBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconToiletPaper","props","React","CentralIconBase","IconToiletPaper_default"]}