react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 351 B
JavaScript
import * as React from 'react';
export function SvgOutdentSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M3 7v2h13V7zm0 4v2h20v-2zm22 0v10l5-5zM3 15v2h20v-2zm0 4v2h20v-2zm0 4v2h13v-2z" })));
}
export default SvgOutdentSolid;