1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-10-04 12:51:34 +02:00

Add teams support

This commit is contained in:
Kamran Ahmed
2023-07-20 19:24:34 +01:00
parent bbe8125fc1
commit 03ba0c384b
101 changed files with 5612 additions and 182 deletions

View File

@@ -0,0 +1,26 @@
type ChevronDownIconProps = {
className?: string;
};
export function ChevronDownIcon(props: ChevronDownIconProps) {
const { className } = props;
return (
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
width="24"
height="24"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
className={className}
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M19.5 8.25l-7.5 7.5-7.5-7.5"
/>
</svg>
);
}