import React, { FC } from 'react';
import { ADSIcon } from "../../icons.types";

const ChevronUp64: FC<ADSIcon>  = 
    ({fill, size = '4rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
  <path fill-rule="evenodd" d="M32 23.834a1.5 1.5 0 0 1 1.06.439l13.334 13.333a1.5 1.5 0 1 1-2.121 2.121L32 27.456 19.727 39.728a1.5 1.5 0 1 1-2.121-2.122l13.333-13.333a1.5 1.5 0 0 1 1.061-.44Z"/>
</svg>
)
export default ChevronUp64