mirror of
https://github.com/vercel/commerce.git
synced 2025-04-28 13:57:50 +00:00
* Footer theme switcher * Remove lazy loading & change rotation animation * Changes * Update ThemeSwitcher.tsx * Requested style changes * Update ThemeSwitcher.tsx * Fix alignment * Update ThemeSwitcher.tsx
20 lines
500 B
TypeScript
20 lines
500 B
TypeScript
const System = ({ ...props }) => (
|
|
<svg
|
|
data-testid="geist-icon"
|
|
fill="none"
|
|
height="16"
|
|
shapeRendering="geometricPrecision"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="1.5"
|
|
viewBox="0 0 24 24"
|
|
className="text-current"
|
|
{...props}
|
|
>
|
|
<path d="M2 13.381h20M8.66 19.05V22m6.84-2.95V22m-8.955 0h10.932M4 19.05h16a2 2 0 002-2V4a2 2 0 00-2-2H4a2 2 0 00-2 2v13.05a2 2 0 002 2z"></path>
|
|
</svg>
|
|
)
|
|
|
|
export default System
|