mirror of
https://github.com/thedevs-network/kutt-extension.git
synced 2026-02-03 05:43:24 +00:00
20 lines
466 B
TypeScript
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);
|