@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.02 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconLiquidGlass/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLiquidGlass: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"liquid-glass, glass-effect\">\n <path\n d=\"M18 7.81445C20.6111 8.65809 22.5 11.1081 22.5 14C22.5 17.5899 19.5899 20.5 16 20.5H11.5C8.79617 20.5 6.47866 18.8488 5.49902 16.5H1.5V3.5H18V7.81445ZM11.5 9C8.73858 9 6.5 11.2386 6.5 14C6.5 16.7614 8.73858 19 11.5 19H16C18.7614 19 21 16.7614 21 14C21 11.2386 18.7614 9 16 9H11.5ZM16.75 9.5C17.4404 9.5 18 10.0596 18 10.75V15.7461C17.9998 16.1602 17.6641 16.4961 17.25 16.4961H9.25C8.40848 16.4961 9.02657 17.4899 8.80859 17.5293C8.72971 17.5435 8.66078 17.4747 8.59961 17.4229C7.98436 16.9014 7.5498 16.341 7.5498 15.8857C7.55015 15.255 8.06154 14.9962 8.69238 14.9961H16.4922V10.5C16.4922 10.216 16.3737 9.95938 16.1836 9.77734C16.1503 9.74529 16.1289 9.70152 16.1289 9.65527C16.1291 9.56949 16.1993 9.5 16.2852 9.5H16.75ZM3 15H5.07715C5.0268 14.674 5 14.3401 5 14C5 10.4101 7.91015 7.5 11.5 7.5H16C16.1683 7.5 16.3349 7.50795 16.5 7.52051V5H3V15Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconLiquidGlass;\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,EAAmDC,GAE5DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,8BACpCC,EAAA,cAAC,QACC,EAAE,m1BACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconLiquidGlass","props","React","CentralIconBase","IconLiquidGlass_default"]}