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.67 kB
{"version":3,"sources":["../src/IconCurtain/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCurtain: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"curtain,showtime,theater\">\n <path\n d=\"M8.25 19.25V20H8.98658L8.99988 19.2635L8.25 19.25ZM2.75 19.25H2V20H2.75V19.25ZM2.75 4.75V4H2V4.75H2.75ZM21.25 4.75H22V4H21.25V4.75ZM21.25 19.25V20H22V19.25H21.25ZM15.75 19.25L15.0001 19.2635L15.0134 20H15.75V19.25ZM8.5 17.5H7.75V19H8.5V17.5ZM15.5 19H16.25V17.5H15.5V19ZM9.99915 4.71433C9.97945 4.30058 9.62807 3.98115 9.21433 4.00085C8.80058 4.02055 8.48115 4.37193 8.50085 4.78567L9.99915 4.71433ZM15.4992 4.78567C15.5189 4.37193 15.1994 4.02055 14.7857 4.00085C14.3719 3.98115 14.0206 4.30058 14.0008 4.71433L15.4992 4.78567ZM8.25 18.5H2.75V20H8.25V18.5ZM2.75 5.5H21.25V4H2.75V5.5ZM21.25 18.5H15.75V20H21.25V18.5ZM20.5 4.75V14.0714H22V4.75H20.5ZM20.5 14.0714V19.25H22V14.0714H20.5ZM3.5 19.25V14.0714H2V19.25H3.5ZM3.5 14.0714V4.75H2V14.0714H3.5ZM8.5 19H15.5V17.5H8.5V19ZM16.4999 19.2365C16.4544 16.7178 18.3644 14.8214 21.25 14.8214V13.3214C17.6356 13.3214 14.9376 15.7999 15.0001 19.2635L16.4999 19.2365ZM8.99988 19.2635C9.06216 15.8149 6.37719 13.2415 2.73352 13.3216L2.76648 14.8212C5.62281 14.7585 7.54588 16.7028 7.50012 19.2365L8.99988 19.2635ZM2.91503 14.803C5.41655 14.2388 7.2936 13.1413 8.49235 11.4036C9.68233 9.67859 10.1285 7.43101 9.99915 4.71433L8.50085 4.78567C8.62148 7.31899 8.19267 9.19641 7.25765 10.5518C6.3314 11.8945 4.83345 12.8326 2.58497 13.3398L2.91503 14.803ZM21.3874 13.3341C18.6224 12.8189 17.1738 11.8744 16.3906 10.5877C15.579 9.25432 15.375 7.39268 15.4992 4.78567L14.0008 4.71433C13.875 7.35732 14.046 9.62068 15.1094 11.3676C16.2012 13.1613 18.1276 14.2525 21.1126 14.8087L21.3874 13.3341Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCurtain;\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,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,4BACpCC,EAAA,cAAC,QACC,EAAE,w/CACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconCurtain","props","React","CentralIconBase","IconCurtain_default"]}