@central-icons-react/square-filled-radius-0-stroke-1
Version:
A collection of square filled React icons with 0px radius and 1px stroke width, designed for use in React applications.
1 lines • 3.8 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconRewind30s/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRewind30s: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"rewind-30s\">\n <path\n d=\"M13 3.05493V5.5L9 2.75L13 0V2.04938C18.0533 2.5511 22 6.81465 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 9.23871 3.11984 6.73803 4.92893 4.92893L5.63604 5.63604C4.00681 7.26527 3 9.51458 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.36745 17.5 3.55237 13 3.05493Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M8.05078 12.377H8.79736C9.81787 12.377 10.4194 12.9087 10.4302 13.709C10.4409 14.5146 9.8501 15.1001 8.80273 15.1001C7.81982 15.1001 7.35254 14.5415 7.25586 13.854H6.375C6.41797 14.9766 7.19678 15.9111 8.77051 15.9111C10.2959 15.9111 11.4077 14.9712 11.3809 13.7144C11.354 12.522 10.4033 11.9902 9.78027 11.9365V11.9204C10.3496 11.8291 11.1392 11.1738 11.1123 10.1318C11.0801 9.0791 10.1777 8.2627 8.80273 8.2627C7.32031 8.2627 6.5791 9.28857 6.55762 10.25H7.45459C7.50293 9.70215 7.87891 9.06836 8.80273 9.06836C9.62988 9.06836 10.1562 9.56787 10.1616 10.2876C10.167 11.0342 9.58691 11.5605 8.75439 11.5605H8.05078V12.377Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M12.4443 12.377C12.4443 14.5308 13.3574 15.9058 15.0278 15.9058C16.709 15.9058 17.606 14.52 17.606 12.377V11.8076C17.606 9.64307 16.7036 8.2627 15.0332 8.2627C13.3628 8.2627 12.4443 9.64844 12.4443 11.8076V12.377ZM13.3735 11.813C13.3735 10.0781 14.002 9.08447 15.0278 9.08447C16.0483 9.08447 16.6768 10.0781 16.6768 11.813V12.3662C16.6768 14.1011 16.0483 15.084 15.0278 15.084C14.002 15.084 13.3735 14.1011 13.3735 12.3662V11.813Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRewind30s;\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,EAAiDC,GAE1DC,EAAA,cAACC,EAAA,CAAiB,GAAGF,EAAO,UAAU,cACpCC,EAAA,cAAC,QACC,EAAE,gTACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,knBACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,ibACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRewind30s","props","React","CentralIconBase","IconRewind30s_default"]}