@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.74 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconEmojiAddReaction/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconEmojiAddReaction: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"emoji-add-reaction, reaction\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M19.5 1C19.7761 1 20 1.22386 20 1.5V4H22.5C22.7761 4 23 4.22386 23 4.5C23 4.77614 22.7761 5 22.5 5H20V7.5C20 7.77614 19.7761 8 19.5 8C19.2239 8 19 7.77614 19 7.5V5H16.5C16.2239 5 16 4.77614 16 4.5C16 4.22386 16.2239 4 16.5 4H19V1.5C19 1.22386 19.2239 1 19.5 1ZM12.4738 3.0124C10.0143 2.88357 7.51389 3.75819 5.63604 5.63604L5.30329 5.30329L5.63604 5.63604C2.12132 9.15075 2.12132 14.8492 5.63604 18.364L5.28249 18.7175L5.63604 18.364C9.15075 21.8787 14.8492 21.8787 18.364 18.364C20.2418 16.4861 21.1164 13.9857 20.9876 11.5262C20.9732 11.2504 21.185 11.0151 21.4608 11.0007C21.7365 10.9862 21.9718 11.1981 21.9862 11.4738C22.1293 14.2045 21.1576 16.9845 19.0711 19.0711C15.1658 22.9763 8.83416 22.9763 4.92894 19.0711C1.02369 15.1658 1.02369 8.83416 4.92894 4.92894C7.01549 2.84238 9.79554 1.87074 12.5262 2.01377C12.8019 2.02821 13.0138 2.26347 12.9993 2.53924C12.9849 2.815 12.7496 3.02685 12.4738 3.0124ZM8 9.5C8 8.94772 8.44772 8.5 9 8.5C9.55228 8.5 10 8.94772 10 9.5C10 10.0523 9.55228 10.5 9 10.5C8.44772 10.5 8 10.0523 8 9.5ZM14 9.5C14 8.94772 14.4477 8.5 15 8.5C15.5523 8.5 16 8.94772 16 9.5C16 10.0523 15.5523 10.5 15 10.5C14.4477 10.5 14 10.0523 14 9.5ZM8.81832 14.4749C9.01358 14.2796 9.33017 14.2796 9.52543 14.4749C10.8923 15.8417 13.1083 15.8417 14.4752 14.4749C14.6704 14.2796 14.987 14.2796 15.1823 14.4749C15.3775 14.6701 15.3775 14.9867 15.1823 15.182C13.4249 16.9393 10.5757 16.9393 8.81832 15.182C8.62306 14.9867 8.62306 14.6701 8.81832 14.4749Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconEmojiAddReaction;\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,EAAwDC,GAEjEC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,gCACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,67CACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconEmojiAddReaction","props","React","CentralIconBase","IconEmojiAddReaction_default"]}