@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 • 4.77 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconStrawberry/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconStrawberry: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"strawberry, ai, dessert\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M11.4857 1.5H12.5143V3.10272C12.5753 3.05346 12.6382 3.00612 12.7026 2.96067C13.39 2.47628 14.2747 2.1929 15.1085 2.02251C15.9502 1.85051 16.7848 1.78492 17.4043 1.76165C17.9709 1.74037 18.5336 1.76133 19.0997 1.78728C18.9084 2.44496 18.7085 3.09613 18.4483 3.7318C18.2087 4.31712 17.8652 5.0446 17.4397 5.573C18.7013 6.14704 19.5899 6.96847 20.1631 7.98828C20.7651 9.05922 21 10.3139 21 11.6629C21 13.9298 19.7446 16.438 18.0475 18.3616C16.3611 20.2731 14.1095 21.75 12 21.75C9.89046 21.75 7.63892 20.2731 5.9525 18.3616C4.25536 16.438 3 13.9298 3 11.6629C3 10.3139 3.23488 9.05922 3.83688 7.98828C4.41014 6.96847 5.2987 6.14704 6.56027 5.573C6.13481 5.0446 5.79135 4.31712 5.55173 3.7318C5.28983 3.09203 5.09216 2.4468 4.90034 1.78728C5.46966 1.76118 6.02409 1.74019 6.59574 1.76165C7.21522 1.78492 8.04984 1.85051 8.89149 2.02251C9.72532 2.1929 10.61 2.47628 11.2974 2.96067C11.3618 3.00612 11.4247 3.05346 11.4857 3.10272V1.5ZM12.7714 11C12.7714 11.8284 12.426 12.5 12 12.5C11.574 12.5 11.2286 11.8284 11.2286 11C11.2286 10.1716 11.574 9.5 12 9.5C12.426 9.5 12.7714 10.1716 12.7714 11ZM7.88571 12.5C8.31176 12.5 8.65714 11.8284 8.65714 11C8.65714 10.1716 8.31176 9.5 7.88571 9.5C7.45967 9.5 7.11429 10.1716 7.11429 11C7.11429 11.8284 7.45967 12.5 7.88571 12.5ZM16.8857 11C16.8857 11.8284 16.5403 12.5 16.1143 12.5C15.6882 12.5 15.3429 11.8284 15.3429 11C15.3429 10.1716 15.6882 9.5 16.1143 9.5C16.5403 9.5 16.8857 10.1716 16.8857 11ZM14.0571 17C14.4832 17 14.8286 16.3284 14.8286 15.5C14.8286 14.6716 14.4832 14 14.0571 14C13.6311 14 13.2857 14.6716 13.2857 15.5C13.2857 16.3284 13.6311 17 14.0571 17ZM10.7143 15.5C10.7143 16.3284 10.3689 17 9.94286 17C9.51681 17 9.17143 16.3284 9.17143 15.5C9.17143 14.6716 9.51681 14 9.94286 14C10.3689 14 10.7143 14.6716 10.7143 15.5ZM10.6937 3.77039C11.1931 4.12234 11.4857 4.56835 11.4858 5.17923V5.65142C10.2263 5.58004 8.93321 5.15306 7.66644 5.26571L7.53996 5.14429C7.16391 4.78326 6.79457 4.06349 6.50743 3.36207C6.41769 3.14285 6.3395 2.93446 6.2748 2.75293C6.36215 2.75464 6.45624 2.75722 6.55607 2.76097C7.14194 2.78297 7.91446 2.84475 8.67995 3.00118C9.45325 3.15921 10.1757 3.40531 10.6937 3.77039ZM12.5143 5.17922V5.65142C13.7738 5.58004 15.0669 5.15306 16.3336 5.26571L16.4601 5.14429C16.8362 4.78326 17.2055 4.06349 17.4926 3.36207C17.5824 3.14285 17.6606 2.93446 17.7253 2.75293C17.6379 2.75464 17.5438 2.75722 17.444 2.76097C16.8581 2.78297 16.0856 2.84475 15.3201 3.00118C14.5468 3.15921 13.8244 3.40531 13.3064 3.77039C12.807 4.12234 12.5143 4.56835 12.5143 5.17922Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconStrawberry;\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,EAAkDC,GAE3DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,2BACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,g+EACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconStrawberry","props","React","CentralIconBase","IconStrawberry_default"]}