@central-icons-react/square-filled-radius-0-stroke-1.5
Version:
A collection of square filled React icons with 0px radius and 1.5px stroke width, designed for use in React applications.
1 lines • 3.36 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconAround/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconAround: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"around, spatial\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M3.5 7.72978V17.9562C3.51147 17.9716 3.53358 17.9973 3.57375 18.0332C3.69829 18.1445 3.92392 18.2848 4.27961 18.4342C4.82459 18.6632 5.57812 18.874 6.5 19.0467V8.57089C5.39261 8.37845 4.43084 8.12479 3.69858 7.81712C3.63138 7.78889 3.56512 7.7598 3.5 7.72978ZM20.5 7.72978V17.9562C20.4885 17.9716 20.4664 17.9973 20.4263 18.0332C20.3017 18.1445 20.0761 18.2848 19.7204 18.4342C19.1754 18.6632 18.4219 18.874 17.5 19.0467V8.57089C18.6074 8.37845 19.5692 8.12479 20.3014 7.81712C20.3686 7.78889 20.4349 7.7598 20.5 7.72978ZM22 6V18C22 18.5016 21.7215 18.8874 21.4257 19.1517C21.1277 19.418 20.7338 19.6355 20.3014 19.8171C19.431 20.1828 18.2363 20.4722 16.8582 20.6732L16 20.7984V16.7259C14.7997 16.5818 13.4414 16.5 12 16.5C10.5586 16.5 9.20035 16.5818 8 16.7259V20.7984L7.14176 20.6732C5.76367 20.4722 4.56899 20.1828 3.69858 19.8171C3.26624 19.6355 2.87232 19.418 2.57432 19.1517C2.27849 18.8874 2 18.5016 2 18V6C2 5.25034 2.603 4.76159 3.10301 4.47404C3.65924 4.15416 4.41425 3.89133 5.282 3.68026C7.02922 3.25526 9.40404 3 12 3C14.596 3 16.9708 3.25526 18.718 3.68026C19.5858 3.89133 20.3408 4.15416 20.897 4.47404C21.397 4.76159 22 5.25034 22 6Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAround;\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,mBACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,goCACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconAround","props","React","CentralIconBase","IconAround_default"]}