import * as React from "react";
import { UimIconProps } from '../index.types'

function UimCornerDownLeft(props: UimIconProps) {
  return <svg viewBox="0 0 24 24" width={props.size || '1em'} height={props.size || '1em'} fill="currentColor" {...props}><path opacity={1} d="M9.94238,22a.99676.99676,0,0,1-.707-.293L4.60742,17.07861a.99964.99964,0,0,1,0-1.41406l4.62793-4.62891a.99989.99989,0,0,1,1.41406,1.41407L6.72852,16.37158,10.64941,20.293A1,1,0,0,1,9.94238,22Z" /><path opacity={1} d="M15.68555,17.37158H5.31445a1,1,0,0,1,0-2h10.3711a2.00229,2.00229,0,0,0,2-2V3a1,1,0,0,1,2,0V13.37158A4.00427,4.00427,0,0,1,15.68555,17.37158Z" /></svg>;
}

export default UimCornerDownLeft;