UNPKG

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

Version:

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

1 lines 3.16 kB
{"version":3,"sources":["../src/IconGifSquare/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconGifSquare: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"gif-square\">\n <path\n d=\"M10.8089 11.0156C10.7829 9.96322 9.95565 9 8.37041 9C6.67689 9 5.75 10.0693 5.75 11.6096V12.3267C5.75 13.8416 6.53829 15 8.36608 15C10.0293 15 10.8132 13.9646 10.8132 12.8359V11.7115H8.43971V12.6959H9.46622V12.942C9.46622 13.43 9.0764 13.8501 8.40073 13.8501C7.50849 13.8501 7.19664 13.1924 7.19664 12.3225V11.6223C7.19664 10.6803 7.60811 10.1457 8.36175 10.1457C8.99411 10.1457 9.36227 10.5233 9.4229 11.0156H10.8089Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M13.1608 14.8939V9.10184H11.7271V14.8939H13.1608Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M15.7422 14.8939V12.7129H18.0248V11.6181H15.7422V10.2263H18.25V9.10184H14.3086V14.8939H15.7422Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M20.25 3.75H3.75V20.25H20.25V3.75Z\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconGifSquare;\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,cACpCC,EAAA,cAAC,QACC,EAAE,qaACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oDACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kGACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,qCACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconGifSquare","props","React","CentralIconBase","IconGifSquare_default"]}