UNPKG

@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.05 kB
{"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.625C2 4.17835 3.16595 3 4.61111 3C5.37238 3 6.05665 3.32775 6.53296 3.84803C8.12934 3.43495 10.2257 3 12 3C13.7743 3 15.8707 3.43495 17.467 3.84803C17.9433 3.32775 18.6276 3 19.3889 3C20.8341 3 22 4.17835 22 5.625C22 6.34821 21.7086 7.00379 21.2378 7.47852C21.6213 8.82606 22 10.5245 22 12C22 13.4755 21.6213 15.1739 21.2378 16.5214C21.7087 16.9962 22.0001 17.6518 22.0001 18.375C22.0001 19.8217 20.8341 21 19.3889 21C18.6305 21 17.9485 20.6747 17.4724 20.1577C15.8881 20.5693 13.8045 21 12 21C10.1955 21 8.11199 20.5693 6.52764 20.1578C6.05157 20.6747 5.36955 21 4.61111 21C3.16595 21 2 19.8217 2 18.375C2 17.6518 2.29138 16.9962 2.76218 16.5215C2.3787 15.1739 2 13.4755 2 12C2 10.5245 2.3787 8.82606 2.76218 7.47852C2.29138 7.00379 2 6.34821 2 5.625ZM9 8V9H13.8491L9 14.819V16H15V15H10.1509L15 9.18102V8H9Z\"\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,gzBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPillowZz","props","React","CentralIconBase","IconPillowZz_default"]}