@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.23 kB
Source Map (JSON)
{"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.48986 6.5C4.82049 6.5 3.5 7.8144 3.5 9.39583C3.5 10.9773 4.82049 12.2917 6.48986 12.2917C8.15924 12.2917 9.47972 10.9773 9.47972 9.39583C9.47972 7.8144 8.15924 6.5 6.48986 6.5ZM2 9.39583C2 6.95019 4.0283 5 6.48986 5C8.94441 5 10.9682 6.93909 10.9797 9.37492C11.2172 13.881 8.86934 16.5564 5.29576 18.8789L4.6669 19.2876L3.8495 18.0298L4.47836 17.6211C6.29549 16.4402 8.23263 15.1288 9.02918 13.0211C8.30482 13.5079 7.42886 13.7917 6.48986 13.7917C4.0283 13.7917 2 11.8415 2 9.39583ZM17.4899 6.5C15.8205 6.5 14.5 7.8144 14.5 9.39583C14.5 10.9773 15.8205 12.2917 17.4899 12.2917C19.1592 12.2917 20.4797 10.9773 20.4797 9.39583C20.4797 7.8144 19.1592 6.5 17.4899 6.5ZM13 9.39583C13 6.95019 15.0283 5 17.4899 5C19.9444 5 21.9682 6.93909 21.9797 9.37492C22.2172 13.881 19.8693 16.5564 16.2958 18.8789L15.6669 19.2876L14.8495 18.0298L15.4784 17.6211C17.2955 16.4402 19.2326 15.1288 20.0292 13.0211C19.3048 13.5079 18.4289 13.7917 17.4899 13.7917C15.0283 13.7917 13 11.8415 13 9.39583Z\"\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,w9BACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconCloseQuote1","props","React","CentralIconBase","IconCloseQuote1_default"]}