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

21 lines
415 B
TypeScript

import React from 'react';
const Info: React.FC = () => (
<svg
width={14}
height={14}
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
>
<circle cx="12" cy="12" r="10" />
<line x1="12" y1="16" x2="12" y2="12" />
<line x1="12" y1="8" x2="12.01" y2="8" />
</svg>
);
export default React.memo(Info);