Files
kutt-extension/source/components/Icon/QRCode.tsx
2026-01-04 03:24:00 +05:30

20 lines
466 B
TypeScript

import React from 'react';
const QRCode: React.FC = () => (
<svg
width={16}
height={16}
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth={1.5}
strokeLinecap="round"
strokeLinejoin="round"
className="maximize_svg__feather maximize_svg__feather-maximize"
>
<path d="M8 3H5a2 2 0 00-2 2v3m18 0V5a2 2 0 00-2-2h-3m0 18h3a2 2 0 002-2v-3M3 16v3a2 2 0 002 2h3" />
</svg>
);
export default React.memo(QRCode);