7 lines
No EOL
336 B
TypeScript
Executable file
7 lines
No EOL
336 B
TypeScript
Executable file
import React from 'react';
|
|
|
|
export const ChevronDownIcon = (props: React.SVGProps<SVGSVGElement>) => (
|
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth={2} stroke="currentColor" {...props}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5" />
|
|
</svg>
|
|
); |