react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 455 B
JavaScript
import * as React from 'react';
export function SvgSortAmountDownSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M4 5v2h12V5zm17 0v18.688l-2.594-2.594L17 22.5l4.281 4.313.719.687.719-.688L27 22.5l-1.406-1.406L23 23.687V5zM4 9v2h10V9zm0 4v2h8v-2zm0 4v2h6v-2zm0 4v2h4v-2zm0 4v2h2v-2z" })));
}
export default SvgSortAmountDownSolid;