@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.25 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconFoodExperiences/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFoodExperiences: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"food-experiences,plate\">\n <path\n d=\"M15.9993 2.323L14.107 6.1077L10.3223 8.00005L14.107 9.8924L15.9993 13.6771L17.8917 9.8924L21.6764 8.00005L17.8917 6.1077L15.9993 2.323Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M9.49932 3.00005C8.67089 3.00005 7.99932 3.67162 7.99932 4.50005C7.99932 5.32848 8.67089 6.00005 9.49932 6.00005C10.3277 6.00005 10.9993 5.32848 10.9993 4.50005C10.9993 3.67162 10.3277 3.00005 9.49932 3.00005Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M5.99932 6.823L4.9403 8.94103L2.82227 10L4.9403 11.0591L5.99932 13.1771L7.05833 11.0591L9.17637 10L7.05833 8.94103L5.99932 6.823Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M5.1425 18.1855C6.06599 18.7914 7.32919 19.3811 8.99927 19.7165V21.0001H14.9993V19.7165C16.6693 19.3811 17.9325 18.7914 18.856 18.1855C19.6999 17.6318 20.4657 16.9407 20.9993 16.0773V15.0001H2.99927V16.0773C3.53284 16.9407 4.29866 17.6318 5.1425 18.1855Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFoodExperiences;\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,EAAuDC,GAEhEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,0BACpCC,EAAA,cAAC,QACC,EAAE,0IACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oNACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oIACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,iQACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFoodExperiences","props","React","CentralIconBase","IconFoodExperiences_default"]}