@central-icons-react/square-outlined-radius-0-stroke-2
Version:
A collection of square outlined React icons with 0px radius and 2px 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.0019 5V4H19.0019V5H21.0019ZM20.0019 9V10H21.0019V9H20.0019ZM16.0019 8H15.0019V10H16.0019V8ZM12.0019 3C7.80686 3 4.28451 5.8692 3.28547 9.75074L5.22234 10.2493C5.99947 7.2299 8.74152 5 12.0019 5V3ZM20.3473 8.62478C19.0129 5.32832 15.7805 3 12.0019 3V5C14.938 5 17.4542 6.80802 18.4934 9.37522L20.3473 8.62478ZM19.0019 5V9H21.0019V5H19.0019ZM20.0019 8H19.4204V10H20.0019V8ZM19.4204 8H16.0019V10H19.4204V8Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M10.0024 21H7.92676V14.2461H7.83789C7.2666 14.6206 6.50488 15.1094 5.88281 15.541V13.6938C6.54932 13.2241 7.27295 12.7607 7.95215 12.3354H10.0024V21Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M11.3101 16.9375V16.3853C11.3101 13.8843 12.5669 12.1831 14.7568 12.1831C16.9658 12.1831 18.1592 13.8652 18.1592 16.3853V16.9375C18.1592 19.2798 17.0229 21.1587 14.7124 21.1587C12.5098 21.1587 11.3101 19.4385 11.3101 16.9375ZM13.4111 16.3916V16.9312C13.4111 18.6577 13.9443 19.4829 14.7378 19.4829C15.5249 19.4829 16.0645 18.645 16.0645 16.9312V16.3916C16.0645 14.6777 15.5249 13.8589 14.7378 13.8589C13.9443 13.8589 13.4111 14.665 13.4111 16.3916Z\"\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,0ZACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,wJACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mcACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconForwards10s","props","React","CentralIconBase","IconForwards10s_default"]}