UNPKG

@central-icons-react/square-filled-radius-0-stroke-1

Version:

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

1 lines 3.12 kB
{"version":3,"sources":["../src/IconMathScientific/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMathScientific: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"math-scientific, function\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M8 6C6.99413 6 6.1357 6.72721 5.97033 7.71939L5.59023 10H8V11H5.42356L4.51606 16.445C4.27033 17.9194 2.99471 19 1.5 19H1V18H1.5C2.50587 18 3.3643 17.2728 3.52967 16.2806L4.40977 11H3V10H4.57644L4.98394 7.55499C5.22967 6.08062 6.50529 5 8 5H8.5V6H8ZM12.6467 6.71393L12.4664 7.18029C11.1779 10.5132 11.1779 13.4868 12.4664 16.8197L12.6467 17.2861L11.7139 17.6467L11.5336 17.1803C10.1555 13.6153 10.1555 10.3847 11.5336 6.81971L11.7139 6.35334L12.6467 6.71393ZM21.2861 6.35334L21.4664 6.81971C22.8445 10.3847 22.8445 13.6153 21.4664 17.1803L21.2861 17.6467L20.3533 17.2861L20.5336 16.8197C21.8221 13.4868 21.8221 10.5132 20.5336 7.18029L20.3533 6.71393L21.2861 6.35334ZM14.5781 8.79722L16.5 11.1996L18.4219 8.79722L19.2028 9.42191L17.1403 12L19.2028 14.5781L18.4219 15.2028L16.5 12.8004L14.5781 15.2028L13.7972 14.5781L15.8597 12L13.7972 9.42191L14.5781 8.79722Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMathScientific;\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,EAAsDC,GAE/DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,6BACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,81BACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconMathScientific","props","React","CentralIconBase","IconMathScientific_default"]}