@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.35 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconFastForward15s/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFastForward15s: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"fast-forward-15s\">\n <path\n d=\"M10.1416 15.75V8.41846H8.73975C8.17041 8.75684 7.53125 9.1543 6.96729 9.55176V10.8784C7.48828 10.5186 8.20264 10.0728 8.65381 9.79346H8.70215V15.75H10.1416Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M11.6133 13.7788C11.6562 14.9229 12.5801 15.8896 14.2451 15.8896C15.8726 15.8896 17.0649 14.8691 17.0649 13.2739C17.0649 11.7808 15.937 10.8462 14.6533 10.8462C13.7993 10.8462 13.2461 11.2329 13.0796 11.4746H13.0312L13.2139 9.58398H16.5278V8.41309H12.0537L11.7046 12.7261H12.9775C13.144 12.3662 13.5576 11.9473 14.2881 11.9473C15.0508 11.9473 15.647 12.4951 15.647 13.3384C15.647 14.23 14.9541 14.7456 14.2827 14.7456C13.563 14.7456 13.042 14.375 12.9507 13.7788H11.6133Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M11 3.5582V5.5L15 2.75L11 0V2.04938C5.94668 2.5511 2 6.81465 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 9.23878 20.8799 6.73775 19.0711 4.92893L18.0104 5.98959C19.5494 7.52861 20.5 9.65258 20.5 12C20.5 16.6944 16.6944 20.5 12 20.5C7.30558 20.5 3.5 16.6944 3.5 12C3.5 7.64389 6.77683 4.05313 11 3.5582Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconFastForward15s;\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,EAAsDC,GAE/DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,oBACpCC,EAAA,cAAC,QACC,EAAE,+JACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,0dACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,oUACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconFastForward15s","props","React","CentralIconBase","IconFastForward15s_default"]}