@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.2 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconLinear/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLinear: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"linear\">\n <path\n d=\"M2.24508 14.3046C2.20058 14.1149 2.42658 13.9954 2.56436 14.1332L9.86684 21.4356C10.0046 21.5734 9.88514 21.7994 9.69544 21.7549C6.0103 20.8904 3.10956 17.9897 2.24508 14.3046ZM2.00038 11.3778C1.99685 11.4345 2.01815 11.4898 2.05829 11.5299L12.4701 21.9417C12.5102 21.9818 12.5655 22.0032 12.6222 21.9996C13.096 21.9701 13.5609 21.9076 14.0147 21.8144C14.1676 21.783 14.2207 21.5952 14.1103 21.4848L2.51519 9.8897C2.40482 9.77932 2.21696 9.83244 2.18556 9.98534C2.09237 10.4391 2.02989 10.904 2.00038 11.3778ZM2.84219 7.94108C2.80889 8.01584 2.82585 8.1032 2.88372 8.16108L15.8389 21.1163C15.8968 21.1742 15.9842 21.1911 16.0589 21.1578C16.4161 20.9987 16.7623 20.8193 17.096 20.621C17.2064 20.5554 17.2235 20.4037 17.1327 20.3129L3.68713 6.86734C3.59631 6.77652 3.44459 6.79356 3.37898 6.90398C3.18072 7.23766 3.0013 7.58386 2.84219 7.94108ZM4.53174 5.6148C4.45772 5.54078 4.45314 5.42206 4.52288 5.34398C6.3559 3.29186 9.02228 2 11.9904 2C17.5185 2 22 6.48146 22 12.0096C22 14.9777 20.7081 17.6441 18.656 19.4771C18.578 19.5469 18.4592 19.5423 18.3852 19.4683L4.53174 5.6148Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconLinear;\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,EAA8CC,GAEvDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,UACpCC,EAAA,cAAC,QACC,EAAE,wjCACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconLinear","props","React","CentralIconBase","IconLinear_default"]}