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.34 kB
{"version":3,"sources":["../src/IconPancakes/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPancakes: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"pancakes, maple-syrup, breakfast\">\n <path\n d=\"M21 4H3V6H7V13.5C7 14.3284 7.67157 15 8.5 15C9.32843 15 10 14.3284 10 13.5V10.5C10 11.3284 10.6716 12 11.5 12C12.3284 12 13 11.3284 13 10.5V6H21V4Z\"\n fill=\"currentColor\"\n />\n <path d=\"M14 9V7H21V9H14Z\" fill=\"currentColor\" />\n <path\n d=\"M13.5002 12C13.814 11.5822 14 11.0628 14 10.5V10H21V12H13.5002Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M11 13V13.5C11 14.0628 10.814 14.5822 10.5002 15H22V13H11Z\"\n fill=\"currentColor\"\n />\n <path d=\"M2 7H6V9H2V7Z\" fill=\"currentColor\" />\n <path d=\"M3 10H6V12H3V10Z\" fill=\"currentColor\" />\n <path\n d=\"M3 13H6V13.5C6 14.0628 6.18597 14.5822 6.49982 15H3V13Z\"\n fill=\"currentColor\"\n />\n <path d=\"M3 16H21V18H3V16Z\" fill=\"currentColor\" />\n <path d=\"M1 19V20H23V19H1Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconPancakes;\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,oCACpCC,EAAA,cAAC,QACC,EAAE,sJACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,mBAAmB,KAAK,eAAe,EAC/CA,EAAA,cAAC,QACC,EAAE,kEACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,6DACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,gBAAgB,KAAK,eAAe,EAC5CA,EAAA,cAAC,QAAK,EAAE,mBAAmB,KAAK,eAAe,EAC/CA,EAAA,cAAC,QACC,EAAE,0DACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,oBAAoB,KAAK,eAAe,EAChDA,EAAA,cAAC,QAAK,EAAE,oBAAoB,KAAK,eAAe,CAClD,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPancakes","props","React","CentralIconBase","IconPancakes_default"]}