blob: 577be0ac1c2240b799ba19eee9d893b7ab28cb37 [file] [log] [blame]
import React from 'react';
interface ArrowDownIconProps {
className?: string;
}
export function ArrowDownIcon(props: ArrowDownIconProps) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 16 16"
fill="none"
className={props.className}
>
<path
d="M4 6L7.57574 9.57574C7.81005 9.81005 8.18995 9.81005 8.42426 9.57574L12 6"
stroke="currentColor"
strokeWidth="1.2"
strokeLinecap="round"
/>
</svg>
);
}