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

function UimCornerLeftDown(props: UimIconProps) {
  return <svg viewBox="0 0 24 24" width={props.size || '1em'} height={props.size || '1em'} fill="currentColor" {...props}><path opacity={1} d="M21,4.31445H11.62842a5.00589,5.00589,0,0,0-5,5v6.957L3.707,13.3501A.99989.99989,0,0,0,2.293,14.76416l4.62811,4.62811a1.00349,1.00349,0,0,0,1.41467,0l4.62861-4.62811a.99989.99989,0,0,0-1.41407-1.41406L8.62842,16.27161V9.31445a3.00328,3.00328,0,0,1,3-3H21a1,1,0,0,0,0-2Z" /></svg>;
}

export default UimCornerLeftDown;