@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.19 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconNumberedList/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconNumberedList: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"numbered-list\">\n <path\n d=\"M5.32691 4H6.99753V10.5H5.49753V5.89258L3.71098 7.56003L2.6875 6.46345L5.32691 4Z\"\n fill=\"currentColor\"\n />\n <path d=\"M20.9975 6.5H10.9975V8H20.9975V6.5Z\" fill=\"currentColor\" />\n <path d=\"M20.9975 16H10.9975V17.5H20.9975V16Z\" fill=\"currentColor\" />\n <path\n d=\"M4.10407 15.7654C4.56798 15.3107 5.10358 15 5.60847 15C6.00691 15 6.24745 15.2606 6.24745 15.639C6.24745 15.8523 6.1678 16.036 5.97676 16.2436C5.76759 16.471 5.46932 16.6791 5.08706 16.9291L4.98101 16.9981C4.65204 17.212 4.25798 17.4682 3.94856 17.7633C3.58834 18.1069 3.24745 18.5905 3.24745 19.25V20H7.99745V18.5H5.43052C5.54737 18.4199 5.67683 18.3354 5.81976 18.2421L5.90785 18.1846C6.27558 17.9442 6.72732 17.6433 7.08065 17.2592C7.45211 16.8555 7.74745 16.3255 7.74745 15.639C7.74745 14.4831 6.8854 13.5 5.60847 13.5C4.52416 13.5 3.62836 14.1313 3.05405 14.6942L4.10407 15.7654Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconNumberedList;\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,EAAoDC,GAE7DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,iBACpCC,EAAA,cAAC,QACC,EAAE,oFACF,KAAK,eACP,EACAA,EAAA,cAAC,QAAK,EAAE,sCAAsC,KAAK,eAAe,EAClEA,EAAA,cAAC,QAAK,EAAE,uCAAuC,KAAK,eAAe,EACnEA,EAAA,cAAC,QACC,EAAE,2kBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconNumberedList","props","React","CentralIconBase","IconNumberedList_default"]}