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

19 lines
330 B
TypeScript

import React from 'react';
const ChevronDown: React.FC = () => (
<svg
width={16}
height={16}
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="M6 9l6 6 6-6" />
</svg>
);
export default React.memo(ChevronDown);