UNPKG

@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.34 kB
{"version":3,"sources":["../src/IconRewind15s/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRewind15s: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"rewind-15s\">\n <path\n d=\"M13 4.06189V5.99999L9 3L13 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.23885 3.12038 6.73748 4.92893 4.92893L6.34315 6.34315C4.89434 7.79195 4 9.79058 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 7.92038 16.9463 4.55399 13 4.06189Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M11.5596 13.6982C11.5864 14.896 12.564 15.8843 14.3257 15.8843C16.0391 15.8843 17.2637 14.8745 17.2637 13.2256C17.2637 11.7109 16.1196 10.814 14.8521 10.814C13.9551 10.814 13.4448 11.2061 13.2837 11.4424H13.2139L13.3643 9.8042H16.7373V8.41309H11.9678L11.6562 12.7583H13.23C13.3643 12.4736 13.7295 12.1084 14.3525 12.1084C15.04 12.1084 15.5449 12.5972 15.5449 13.3115C15.5449 14.0581 14.9756 14.52 14.3525 14.52C13.708 14.52 13.2461 14.187 13.1709 13.6982H11.5596Z\"\n fill=\"currentColor\"\n />\n <path\n d=\"M10.2866 15.75V8.41846H8.55176C7.97705 8.77832 7.36475 9.17041 6.80078 9.56787V11.1309C7.20866 10.8478 7.6875 10.5358 8.10733 10.2622C8.22929 10.1827 8.34626 10.1065 8.45508 10.0352H8.53027V15.75H10.2866Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconRewind15s;\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,oTACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,kdACF,KAAK,eACP,EACAA,EAAA,cAAC,QACC,EAAE,+MACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconRewind15s","props","React","CentralIconBase","IconRewind15s_default"]}