Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
361 Bytes
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;