@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.23 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconFocusRenew/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFocusRenew: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"focus-renew\">\n <path d=\"M8.5 3H3V8.5H4V4H8.5V3Z\" fill=\"currentColor\" />\n <path d=\"M21 3H15.5V4H20V8.5H21V3Z\" fill=\"currentColor\" />\n <path\n d=\"M10.0679 9.06795C10.6268 8.70881 11.2938 8.5 12 8.5C13.6302 8.5 15.0012 9.61495 15.3898 11.1246L15.5144 11.6088L16.4829 11.3596L16.3582 10.8754C15.8587 8.9346 14.0975 7.5 12 7.5C11.019 7.5 10.098 7.81437 9.34803 8.34803L8 7V10.5H11.5L10.0679 9.06795Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M8.61026 12.8754L8.48563 12.3912L7.51719 12.6404L7.64182 13.1246C8.14134 15.0654 9.90251 16.5 12 16.5C12.9812 16.5 13.9022 16.1855 14.652 15.652L16 17V13.5H12.5L13.9321 14.9321C13.373 15.2913 12.7062 15.5 12 15.5C10.3698 15.5 8.99882 14.3851 8.61026 12.8754Z\"\n fill=\"currentColor\"\n />\n <path d=\"M4 20V15.5H3V21H8.5V20H4Z\" fill=\"currentColor\" />\n <path d=\"M21 21V15.5H20V20H15.5V21H21Z\" fill=\"currentColor\" />\n </CentralIconBase>\n );\n};\n\nexport default IconFocusRenew;\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,eACpCC,EAAA,cAAC,QAAK,EAAE,0BAA0B,KAAK,eAAe,EACtDA,EAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,EACxDA,EAAA,cAAC,QACC,EAAE,6PACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,qQACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,4BAA4B,KAAK,eAAe,EACxDA,EAAA,cAAC,QAAK,EAAE,gCAAgC,KAAK,eAAe,CAC9D,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFocusRenew","props","React","CentralIconBase","IconFocusRenew_default"]}