Initial commit
This commit is contained in:
28
src/components/Icons/DownIcon.tsx
Normal file
28
src/components/Icons/DownIcon.tsx
Normal file
@@ -0,0 +1,28 @@
|
||||
interface DownIconType {
|
||||
className?: string;
|
||||
onClick?: () => void;
|
||||
}
|
||||
|
||||
const DownIcon = ({ className, onClick }: DownIconType) => {
|
||||
return (
|
||||
<svg
|
||||
width="10"
|
||||
height="6"
|
||||
viewBox="0 0 10 6"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
className={className}
|
||||
onClick={onClick}
|
||||
>
|
||||
<path
|
||||
d="M9 1L5 5L1 1"
|
||||
stroke="#99A2AE"
|
||||
strokeWidth="1.5"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
};
|
||||
|
||||
export default DownIcon;
|
||||
Reference in New Issue
Block a user