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 3.39 kB
{"version":3,"sources":["../src/IconAppleNewton/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconAppleNewton: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"apple-newton, low-hanging-fruits, fall\"\n >\n <path\n d=\"M12.5922 3.22768C13.0651 3.23649 13.536 3.30649 14 3.42874V6.17157L13.25 5.42157L10.4216 8.25L16 13.8284L20.5085 9.31994C21.0897 10.5188 21.4529 11.7912 21.4958 13.0254C21.5357 14.1763 21.2965 15.313 20.6711 16.3102C20.0892 17.2381 19.2009 18.0003 17.9909 18.5385C17.444 19.7353 16.6708 20.6116 15.7332 21.1845C14.7261 21.7999 13.5794 22.035 12.4186 21.9959C10.1178 21.9183 7.68022 20.7656 5.82016 19.1663C3.97133 17.5766 2.54307 15.4125 2.50096 13.1985C2.46088 11.0911 3.67045 9.18882 6.35551 7.86319C5.92307 7.18939 5.61535 6.49234 5.45557 5.75226C5.23254 4.71929 5.30927 3.65579 5.66633 2.52431L5.89204 1.80908L7.3225 2.2605L7.09679 2.97573C6.80503 3.90028 6.76229 4.69699 6.92178 5.4357C7.01036 5.84597 7.16483 6.25456 7.39106 6.6706C8.72496 4.2664 10.5707 3.19 12.5922 3.22768Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M18.1647 6.00682C18.1104 5.95157 18.0554 5.89684 18 5.84265V6.17157L18.1647 6.00682Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M16.75 3V9.18934L18.75 7.18934L19.8107 8.25L16 12.0607L12.1893 8.25L13.25 7.18934L15.25 9.18934V3H16.75Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconAppleNewton;\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,CACE,GAAGF,EACJ,UAAU,0CAEVC,EAAA,cAAC,QACC,EAAE,ixBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,uFACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,2GACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconAppleNewton","props","React","CentralIconBase","IconAppleNewton_default"]}