@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.51 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconPizza/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPizza: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"pizza\">\n <path\n d=\"M19.4284 12.976L21.1674 2.83154L15.955 3.72511C16.5942 4.27528 16.9991 5.09033 16.9991 5.99992C16.9991 7.65678 15.6559 8.99992 13.9991 8.99992C12.3422 8.99992 10.9991 7.65678 10.9991 5.99992C10.9991 5.45623 11.1437 4.94631 11.3966 4.50655L6.6828 5.31462C7.27257 8.99077 9.2442 12.2052 12.0481 14.4082C12.3494 12.4974 14.0036 11.0362 15.9991 11.0362C17.4546 11.0362 18.7286 11.8137 19.4284 12.976Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M17.4951 17.0737L17.7601 16.8106C18.2173 16.3569 18.4991 15.7301 18.4991 15.0362C18.4991 13.6555 17.3798 12.5362 15.9991 12.5362C14.6183 12.5362 13.4991 13.6555 13.4991 15.0362V15.4121C14.7241 16.1539 16.0679 16.7195 17.4951 17.0737Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M18.4309 18.7949C11.6514 17.7011 6.2979 12.3476 5.20407 5.56812L1.87305 6.13915L2.01163 6.88664C2.68338 10.5098 4.42103 13.9749 7.22255 16.7764C10.0241 19.578 13.4892 21.3156 17.1123 21.9874L17.8598 22.1259L18.4309 18.7949Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M13.9991 4.49992C13.1706 4.49992 12.4991 5.1715 12.4991 5.99992C12.4991 6.82835 13.1706 7.49992 13.9991 7.49992C14.8275 7.49992 15.4991 6.82835 15.4991 5.99992C15.4991 5.1715 14.8275 4.49992 13.9991 4.49992Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPizza;\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,EAA6CC,GAEtDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,SACpCC,EAAA,cAAC,QACC,EAAE,+YACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,4OACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kOACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kNACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconPizza","props","React","CentralIconBase","IconPizza_default"]}