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