import React from 'react';
export default function ArrowUpThickIcon(props) {
return (
<svg viewBox="0 0 24 24" {...props} className={`rmi rmi-arrow-up-thick ${props.className}`}>
<path d="M14 20h-4v-9l-3.5 3.5-2.42-2.42L12 4.16l7.92 7.92-2.42 2.42L14 11v9z" />
</svg>
);
}