UNPKG

@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.39 kB
{"version":3,"sources":["../src/IconRepaint/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRepaint: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"repaint, recreate, redo\">\n <path\n d=\"M12.2892 3.5C9.08866 3.5 6.2871 5.2104 4.74956 7.76941L4.74432 7.77813L4.59842 8H9V9H3V3H4V7.07947C5.73206 4.32916 8.79679 2.5 12.2892 2.5C15.6162 2.5 18.5554 4.16018 20.3235 6.69504L20.6096 7.10514L19.7894 7.67723L19.5033 7.26714C17.9142 4.9889 15.2755 3.5 12.2892 3.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M3.5 11.7892V12.2892C3.5 12.5425 3.5107 12.7931 3.53165 13.0408C3.79265 16.1252 5.64748 18.7575 8.2716 20.1086L8.71614 20.3375L8.25836 21.2266L7.81383 20.9977C4.89348 19.494 2.82617 16.5636 2.53521 13.1251C2.51189 12.8494 2.5 12.5707 2.5 12.2892V11.7892H3.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M14.1831 15.0658C15.8864 12.7781 19.2303 8.7135 21.3321 10.6679C23.4366 12.6249 19.2518 16.0819 16.9336 17.8153C16.6601 16.4301 15.5685 15.3388 14.1831 15.0658Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M13.5047 16C14.8828 16 16 17.1172 16 18.4953C16 21.052 13.4427 21.0194 11.5285 20.995C11.349 20.9927 11.1751 20.9905 11.0095 20.9905C11.0095 20.8249 11.0073 20.651 11.005 20.4715C10.9806 18.5573 10.948 16 13.5047 16Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRepaint;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,2BACpCC,EAAA,cAAC,QACC,EAAE,iRACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,qQACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mKACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,2NACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRepaint","props","React","CentralIconBase","IconRepaint_default"]}