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.28 kB
{"version":3,"sources":["../src/IconVisionPro/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconVisionPro: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"vision-pro, goggles\">\n <g clip-path=\"url(#clip0_7604_65923)\">\n <path\n d=\"M12 5C9.3892 4.99999 6.42578 5.1315 4.1056 6.05077C2.9361 6.51414 1.90258 7.18776 1.16249 8.16977C0.418495 9.15697 0 10.4176 0 12C0 13.6956 0.407581 15.4293 1.33128 16.7546C2.26899 18.1001 3.7253 19 5.72727 19C6.72209 19 7.49145 18.7776 8.12401 18.4306C8.74851 18.088 9.2162 17.6359 9.61547 17.2222C9.67744 17.158 9.73758 17.0951 9.79627 17.0338C10.5223 16.2752 11.0249 15.75 12 15.75C12.9751 15.75 13.4777 16.2751 14.2037 17.0338C14.2624 17.0951 14.3225 17.158 14.3845 17.2222C14.7838 17.6359 15.2515 18.088 15.876 18.4306C16.5085 18.7776 17.2779 19 18.2727 19C20.2788 19 21.7341 18.079 22.6697 16.7271C23.5917 15.3946 24 13.6623 24 12C24 10.4176 23.5815 9.15697 22.8375 8.16978C22.0974 7.18777 21.0639 6.51415 19.8944 6.05079C17.5742 5.13152 14.6108 5.00001 12 5Z\"\n fill=\"currentColor\"\n />\n </g>\n <defs>\n <clipPath id=\"clip0_7604_65923\">\n <rect width=\"24\" height=\"24\" fill=\"white\" />\n </clipPath>\n </defs>\n </CentralIconBase>\n );\n};\n\nexport default IconVisionPro;\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,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,uBACpCC,EAAA,cAAC,KAAE,YAAU,0BACXA,EAAA,cAAC,QACC,EAAE,gwBACF,KAAK,eACP,CACF,EACAA,EAAA,cAAC,YACCA,EAAA,cAAC,YAAS,GAAG,oBACXA,EAAA,cAAC,QAAK,MAAM,KAAK,OAAO,KAAK,KAAK,QAAQ,CAC5C,CACF,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconVisionPro","props","React","CentralIconBase","IconVisionPro_default"]}