UNPKG

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

Version:

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

1 lines 2.96 kB
{"version":3,"sources":["../src/IconMathNotes/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMathNotes: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"math-notes, function\">\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12.75 3V9.24397C13.3728 8.25124 14.0451 7.30341 14.8073 6.49956C16.1973 5.0338 17.9291 4 20.25 4H21V5.5H20.25C18.4459 5.5 17.084 6.2787 15.8958 7.53169C14.9327 8.54733 14.1127 9.84313 13.2945 11.25H21V12.75H12.75V21H11.25V14.756C10.6272 15.7488 9.95493 16.6966 9.19266 17.5004C7.80271 18.9662 6.07085 20 3.75 20H3V18.5H3.75C5.55415 18.5 6.91604 17.7213 8.10422 16.4683C9.06732 15.4527 9.88733 14.1569 10.7055 12.75H3V11.25H11.25V3H12.75ZM5.23907 4.1894L7 5.91439L8.76093 4.1894L9.8106 5.26093L7.75 7.27948V10H6.25V7.27948L4.1894 5.26093L5.23907 4.1894ZM15.25 14.1893L17 15.9393L18.75 14.1893L19.8107 15.25L18.0607 17L19.8107 18.75L18.75 19.8107L17 18.0607L15.25 19.8107L14.1893 18.75L15.9393 17L14.1893 15.25L15.25 14.1893Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconMathNotes;\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,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,wBACpCC,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,utBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconMathNotes","props","React","CentralIconBase","IconMathNotes_default"]}