UNPKG

@central-icons-react/square-outlined-radius-0-stroke-2

Version:

A collection of square outlined React icons with 0px radius and 2px stroke width, designed for use in React applications.

1 lines 3.27 kB
{"version":3,"sources":["../src/IconGroup3/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconGroup3: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"group-3\">\n <path\n d=\"M2 20L1.00248 19.9297L0.927027 21H2V20ZM14 20V21H15.073L14.9975 19.9297L14 20ZM22.1457 19V20H23.2187L23.1432 18.9297L22.1457 19ZM10 7C10 8.10457 9.10457 9 8 9V11C10.2091 11 12 9.20914 12 7H10ZM8 9C6.89543 9 6 8.10457 6 7H4C4 9.20914 5.79086 11 8 11V9ZM6 7C6 5.89543 6.89543 5 8 5V3C5.79086 3 4 4.79086 4 7H6ZM8 5C9.10457 5 10 5.89543 10 7H12C12 4.79086 10.2091 3 8 3V5ZM18.5 7.5C18.5 8.32843 17.8284 9 17 9V11C18.933 11 20.5 9.433 20.5 7.5H18.5ZM17 9C16.1716 9 15.5 8.32843 15.5 7.5H13.5C13.5 9.433 15.067 11 17 11V9ZM15.5 7.5C15.5 6.67157 16.1716 6 17 6V4C15.067 4 13.5 5.567 13.5 7.5H15.5ZM17 6C17.8284 6 18.5 6.67157 18.5 7.5H20.5C20.5 5.567 18.933 4 17 4V6ZM2 21H14V19H2V21ZM2.99752 20.0703C3.29785 15.8098 5.79963 14 8 14C10.2004 14 12.7021 15.8098 13.0025 20.0703L14.9975 19.9297C14.6399 14.8568 11.4707 12 8 12C4.52933 12 1.36007 14.8568 1.00248 19.9297L2.99752 20.0703ZM15.4456 14.3698C16.5717 13.8094 17.8861 13.884 18.9682 14.6066C20.0432 15.3243 20.985 16.7551 21.1482 19.0703L23.1432 18.9297C22.9452 16.12 21.7623 14.0674 20.0788 12.9433C18.4026 11.8241 16.3248 11.6984 14.5546 12.5792L15.4456 14.3698ZM17.0001 20H22.1457V18H17.0001V20Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGroup3;\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,WACpCC,EAAA,cAAC,QACC,EAAE,+nCACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconGroup3","props","React","CentralIconBase","IconGroup3_default"]}