UNPKG

@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.37 kB
{"version":3,"sources":["../src/IconRewind10s/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRewind10s: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"rewind-10s\">\n <path\n d=\"M13 3.5582V5.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.23878 3.12011 6.73775 4.92893 4.92893L5.98959 5.98959C4.45057 7.52861 3.5 9.65258 3.5 12C3.5 16.6944 7.30558 20.5 12 20.5C16.6944 20.5 20.5 16.6944 20.5 12C20.5 7.64389 17.2232 4.05313 13 3.5582Z\"\n fill=\"currentColor\"\n />\n <path\n fillRule=\"evenodd\"\n clipRule=\"evenodd\"\n d=\"M11.479 12.3398C11.479 14.4668 12.4512 15.8901 14.2397 15.8901C16.0874 15.8901 17.0273 14.3809 17.0273 12.3398V11.8296C17.0273 9.68652 16.0605 8.2793 14.2666 8.2793C12.4834 8.2793 11.479 9.69727 11.479 11.8296V12.3398ZM12.9238 11.835C12.9238 10.272 13.4448 9.46631 14.2505 9.46631C15.0615 9.46631 15.5771 10.2773 15.5771 11.835V12.3291C15.5771 13.8921 15.0615 14.7085 14.2505 14.7085C13.4448 14.7085 12.9238 13.8975 12.9238 12.3291V11.835Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M10.1899 15.7505V8.41895H8.78809C8.21875 8.75732 7.57959 9.15479 7.01562 9.55225V10.8789C7.53662 10.519 8.25098 10.0732 8.70215 9.79395H8.75049V15.7505H10.1899Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRewind10s;\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,mUACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,SAAS,UACT,SAAS,UACT,EAAE,0bACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,mKACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRewind10s","props","React","CentralIconBase","IconRewind10s_default"]}