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.52 kB
{"version":3,"sources":["../src/IconSmartwatch2/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconSmartwatch2: React.FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props} ariaLabel=\"smartwatch-2, clock, time\">\n <path\n d=\"M8 2V1H7.10496L7.00612 1.88957L8 2ZM16 2L16.9939 1.88957L16.895 1H16V2ZM15.3915 5.875L15.8767 5.0006L15.3915 5.875ZM8.60849 5.875L8.12329 5.0006L8.60849 5.875ZM13 9V8H11V9H13ZM12 12H11V12.4142L11.2929 12.7071L12 12ZM12.7929 14.2071L13.5 14.9142L14.9142 13.5L14.2071 12.7929L12.7929 14.2071ZM8 22L7.00612 22.1104L7.10496 23H8V22ZM16 22V23H16.895L16.9939 22.1104L16 22ZM8.49388 6.61043L8.99388 2.11043L7.00612 1.88957L6.50612 6.38957L8.49388 6.61043ZM8 3H16V1H8V3ZM15.0061 2.11043L15.5061 6.61043L17.4939 6.38957L16.9939 1.88957L15.0061 2.11043ZM18 12C18 15.3137 15.3137 18 12 18V20C16.4183 20 20 16.4183 20 12H18ZM12 18C8.68629 18 6 15.3137 6 12H4C4 16.4183 7.58172 20 12 20V18ZM12 6C13.0564 6 14.0462 6.27215 14.9063 6.7494L15.8767 5.0006C14.7273 4.36282 13.4045 4 12 4V6ZM14.9063 6.7494C16.7535 7.77438 18 9.74231 18 12H20C20 8.98665 18.3335 6.36389 15.8767 5.0006L14.9063 6.7494ZM6 12C6 9.74231 7.24655 7.77438 9.0937 6.7494L8.12329 5.0006C5.66646 6.36389 4 8.98665 4 12H6ZM9.0937 6.7494C9.95377 6.27215 10.9436 6 12 6V4C10.5955 4 9.27266 4.36282 8.12329 5.0006L9.0937 6.7494ZM11 9V12H13V9H11ZM11.2929 12.7071L12.7929 14.2071L14.2071 12.7929L12.7071 11.2929L11.2929 12.7071ZM6.50612 17.6104L7.00612 22.1104L8.99388 21.8896L8.49388 17.3896L6.50612 17.6104ZM8 23H16V21H8V23ZM16.9939 22.1104L17.4939 17.6104L15.5061 17.3896L15.0061 21.8896L16.9939 22.1104Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconSmartwatch2;\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,6BACpCC,EAAA,cAAC,QACC,EAAE,80CACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconSmartwatch2","props","React","CentralIconBase","IconSmartwatch2_default"]}