16 lines
475 B
TypeScript
16 lines
475 B
TypeScript
import { FC } from 'react';
|
|
|
|
interface IconCaretDownProps {
|
|
className?: string;
|
|
}
|
|
|
|
const IconCaretDown: FC<IconCaretDownProps> = ({ className }) => {
|
|
return (
|
|
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" className={className}>
|
|
<path d="M19 9L12 15L5 9" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round" />
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default IconCaretDown;
|