@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 • 2.9 kB
Source Map (JSON)
{"version":3,"sources":["../src/IconArrowRotateClockwise/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconArrowRotateClockwise: React.FC<CentralIconBaseProps> = (\n props,\n) => {\n return (\n <CentralIconBase\n {...props}\n ariaLabel=\"arrow-rotate-clockwise, rotate-right\"\n >\n <path\n d=\"M20.4593 14.9999L20.7926 14.0571L18.9069 13.3906L18.5736 14.3334L20.4593 14.9999ZM19 8V9H20V8H19ZM20 4V3H18V4H20ZM15 7H14V9H15V7ZM17.4113 7.67253L18.0838 8.4126L19.564 7.06753L18.8914 6.32747L17.4113 7.67253ZM11.9717 19C8.10569 19 4.97168 15.866 4.97168 12H2.97168C2.97168 16.9706 7.00112 21 11.9717 21V19ZM4.97168 12C4.97168 8.13401 8.10569 5 11.9717 5V3C7.00112 3 2.97168 7.02944 2.97168 12H4.97168ZM18.5736 14.3334C17.6122 17.0536 15.018 19 11.9717 19V21C15.8919 21 19.2243 18.4941 20.4593 14.9999L18.5736 14.3334ZM18 4V8H20V4H18ZM19 7H15V9H19V7ZM11.9717 5C14.2679 5 15.818 5.91919 17.4113 7.67253L18.8914 6.32747C17.0414 4.2917 14.9909 3 11.9717 3V5Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconArrowRotateClockwise;\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,EACXC,GAGEC,EAAA,cAACC,EAAA,CACE,GAAGF,EACJ,UAAU,wCAEVC,EAAA,cAAC,QACC,EAAE,ipBACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["React","React","CentralIconBase","children","size","ariaLabel","color","ariaHidden","style","props","IconArrowRotateClockwise","props","React","CentralIconBase","IconArrowRotateClockwise_default"]}