File size: 361 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import React from 'react';

const ExpandArrowIcon = ({ className }) => (
  <svg className={className} width="12" height="12" viewBox="0 0 24 24">
    <path
      fill="none"
      stroke="currentColor"
      strokeWidth="2"
      strokeLinecap="round"
      strokeLinejoin="round"
      d="M7 10L12 15 17 10"
    />
  </svg>
);

export default ExpandArrowIcon;