UNPKG

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

Version:

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

1 lines 3.14 kB
{"version":3,"sources":["../src/IconCloseQuote1/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCloseQuote1: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"close-quote-1, blockquote\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M6.49631 7C5.11863 7 4 8.11829 4 9.5C4 10.8817 5.11863 12 6.49631 12C7.874 12 8.99263 10.8817 8.99263 9.5C8.99263 8.11829 7.874 7 6.49631 7ZM2 9.5C2 7.01571 4.01208 5 6.49631 5C8.9714 5 10.9778 7.00088 10.9925 9.47256C11.2154 13.8468 9.01182 16.5235 5.553 18.8318L4.72122 19.3869L3.61101 17.7233L4.44279 17.1682C5.86999 16.2157 7.40005 15.1909 8.24373 13.6476C7.7066 13.8745 7.11615 14 6.49631 14C4.01208 14 2 11.9843 2 9.5ZM17.4847 7C16.107 7 14.9884 8.11829 14.9884 9.5C14.9884 10.8817 16.107 12 17.4847 12C18.8624 12 19.981 10.8817 19.981 9.5C19.981 8.11829 18.8624 7 17.4847 7ZM12.9884 9.5C12.9884 7.01571 15.0005 5 17.4847 5C19.9598 5 21.9662 7.00088 21.981 9.47256C22.2038 13.8468 20.0002 16.5235 16.5414 18.8318L15.7096 19.3869L14.5994 17.7233L15.4312 17.1682C16.8584 16.2157 18.3885 15.1909 19.2321 13.6476C18.695 13.8745 18.1046 14 17.4847 14C15.0005 14 12.9884 11.9843 12.9884 9.5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconCloseQuote1;\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,6BACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,83BACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconCloseQuote1","props","React","CentralIconBase","IconCloseQuote1_default"]}