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.06 kB
{"version":3,"sources":["../src/IconSuperscript/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSuperscript: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"superscript\">\n <path\n d=\"M16.75 11.25H16V12H16.75V11.25ZM21.25 12H22V10.5H21.25V12ZM16.75 12H21.25V10.5H16.75V12ZM19.0058 4.5C19.8745 4.5 20.5 5.07601 20.5 5.9459H22C22 4.1694 20.6225 3 19.0058 3V4.5ZM20.5 5.9459C20.5 6.30799 20.348 6.61399 20.0186 6.94089C19.668 7.28877 19.1837 7.59507 18.6028 7.95773C18.0582 8.29776 17.4174 8.69388 16.924 9.18507C16.4094 9.69732 16 10.3659 16 11.25H17.5C17.5 10.8841 17.6531 10.5758 17.9823 10.2481C18.3326 9.89937 18.8168 9.59245 19.3972 9.23011C19.9413 8.8904 20.582 8.49501 21.0752 8.00563C21.5895 7.49527 22 6.82844 22 5.9459H20.5ZM17.5131 5.95613C17.5843 5.11786 18.1379 4.5 19.0058 4.5V3C17.2106 3 16.1423 4.37144 16.0185 5.82919L17.5131 5.95613Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M2.75 5.75L13.25 18.25M13.25 5.75L2.75 18.25\"\n stroke=\"currentColor\"\n strokeWidth=\"1.5\"\n strokeLinecap=\"square\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSuperscript;\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,eACpCC,EAAA,cAAC,QACC,EAAE,4pBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,+CACF,OAAO,eACP,YAAY,MACZ,cAAc,SAChB,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSuperscript","props","React","CentralIconBase","IconSuperscript_default"]}