@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.6 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconSteak/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSteak: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"steak, t-bone, raw\">\n <path\n d=\"M2.04929 8.22451C3.25175 4.81523 6.22126 2.84138 9.1979 3.6949L9.24808 3.91243C10.0316 7.30943 10.2382 9.89938 9.69949 12.0923L9.66829 12.098L9.68086 12.1668C9.63812 12.3348 9.59096 12.5004 9.53931 12.664C8.83568 14.8912 7.27215 16.7992 4.48507 18.7979C3.39536 17.8105 2.51473 16.3531 1.90818 14.3207C1.31896 12.3464 1.36909 10.1531 2.04929 8.22451Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M10.493 12.9648C10.4929 12.9649 10.493 12.9646 10.493 12.9648C9.72321 15.4015 8.05272 17.4225 5.31184 19.4336C5.6767 19.669 6.05982 19.8625 6.45932 20.017C8.44108 20.7835 10.7216 20.5483 12.9518 19.9324C14.9012 19.3941 17.4556 18.4804 19.4282 16.9897C19.4952 16.939 19.5617 16.8876 19.6274 16.8355L19.6051 16.8067C18.0025 14.7436 16.3799 13.6763 14.8335 13.177C13.3378 12.6942 11.8707 12.7288 10.493 12.9648Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M20.3808 16.1752C21.8505 14.7445 22.7909 12.8554 22.4188 10.4153L22.415 10.3901L22.4086 10.3655C22.0208 8.86629 21.5317 7.85779 20.9177 7.19574C20.2871 6.51581 19.5644 6.24349 18.8143 6.13831C18.3169 6.06857 17.7674 6.07084 17.2353 6.07304C17.0135 6.07396 16.7946 6.07487 16.5838 6.07054C15.8332 6.05512 15.0746 5.97976 14.2896 5.66846L10.3176 4.10857C10.993 7.16473 11.2152 9.68779 10.7647 11.9108C12.1247 11.7223 13.6096 11.7311 15.1407 12.2254C16.902 12.794 18.6789 13.9903 20.3808 16.1752Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSteak;\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,sBACpCC,EAAA,cAAC,QACC,EAAE,gWACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,2ZACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,gfACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSteak","props","React","CentralIconBase","IconSteak_default"]}