@central-icons-react/square-filled-radius-0-stroke-1.5
Version:
A collection of square filled React icons with 0px radius and 1.5px stroke width, designed for use in React applications.
1 lines • 3.04 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconPillowZz/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPillowZz: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"pillow-zz, sleep, snooze\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M2 5.8125C2 4.26159 3.25371 3 4.80556 3C5.56571 3 6.25456 3.30343 6.75882 3.79369C8.30085 3.40245 10.2941 3 12 3C13.7059 3 15.6992 3.40245 17.2412 3.79369C17.7454 3.30343 18.4343 3 19.1944 3C20.7463 3 22 4.26159 22 5.8125C22 6.53097 21.7307 7.187 21.2888 7.68388C21.6504 8.97672 22 10.5849 22 12C22 13.4151 21.6504 15.0233 21.2888 16.3161C21.7307 16.813 22 17.469 22 18.1875C22 19.7384 20.7463 21 19.1945 21C18.4372 21 17.7507 20.6989 17.247 20.2119C15.7158 20.6017 13.7339 21 12 21C10.2661 21 8.28424 20.6017 6.75304 20.2119C6.24931 20.6989 5.5628 21 4.80556 21C3.25371 21 2 19.7384 2 18.1875C2 17.469 2.26929 16.813 2.71124 16.3161C2.34958 15.0233 2 13.4151 2 12C2 10.5849 2.34958 8.97672 2.71124 7.68388C2.26929 7.187 2 6.53097 2 5.8125ZM9 8.5V10H12.9393L9 13.9393V15.5H15V14H11.0607L15 10.0607V8.5H9Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPillowZz;\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,EAAgDC,GAEzDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,4BACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,uyBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPillowZz","props","React","CentralIconBase","IconPillowZz_default"]}