@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.38 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconForwards10s/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconForwards10s: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"forwards-10s\">\n <path\n d=\"M21 4.75V4H19.5V4.75H21ZM20.25 9.25V10H21V9.25H20.25ZM15.75 8.5H15V10H15.75V8.5ZM11.9947 3C7.7721 3 4.26262 6.02879 3.27157 10.0714L4.72843 10.4286C5.57011 6.99523 8.52452 4.5 11.9947 4.5V3ZM20.3693 9.03969C19.3178 5.44033 15.7604 3 11.9947 3V4.5C15.1576 4.5 18.0822 6.55967 18.9295 9.46031L20.3693 9.03969ZM19.5 4.75V9.25H21V4.75H19.5ZM20.25 8.5H19.6494V10H20.25V8.5ZM19.6494 8.5H15.75V10H19.6494V8.5Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M9.86084 21H8.15967V13.9604H8.10254C7.56934 14.2905 6.7251 14.8174 6.10938 15.2427V13.6748C6.77588 13.2051 7.53125 12.7354 8.2041 12.3354H9.86084V21Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M11.3843 16.9692V16.3662C11.3843 13.8462 12.5713 12.1704 14.6787 12.1704C16.7988 12.1704 17.9414 13.8335 17.9414 16.3662V16.9692C17.9414 19.3813 16.8306 21.165 14.647 21.165C12.5332 21.165 11.3843 19.4829 11.3843 16.9692ZM13.0918 16.3726V16.9565C13.0918 18.8101 13.7075 19.7686 14.6597 19.7686C15.6182 19.7686 16.2275 18.8037 16.2275 16.9565V16.3726C16.2275 14.5317 15.6182 13.5732 14.6597 13.5732C13.7075 13.5732 13.0918 14.5254 13.0918 16.3726Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconForwards10s;\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,gBACpCC,EAAA,cAAC,QACC,EAAE,qZACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,wJACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,icACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconForwards10s","props","React","CentralIconBase","IconForwards10s_default"]}