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

function UimAngleDoubleDown(props: UimIconProps) {
  return <svg viewBox="0 0 24 24" width={props.size || '1em'} height={props.size || '1em'} fill="currentColor" {...props}><path opacity={1} d="M12 11.75a.99676.99676 0 0 1-.707-.293l-3-3A.99989.99989 0 0 1 9.707 7.043L12 9.33594l2.293-2.293A.99989.99989 0 0 1 15.707 8.457l-3 3A.99676.99676 0 0 1 12 11.75zM12 17.25a.99676.99676 0 0 1-.707-.293l-3-3A.99989.99989 0 0 1 9.707 12.543L12 14.83594l2.293-2.293A.99989.99989 0 0 1 15.707 13.957l-3 3A.99676.99676 0 0 1 12 17.25z" /></svg>;
}

export default UimAngleDoubleDown;