react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 440 B
JavaScript
import * as React from 'react';
export function SvgExpandArrowsAltSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M4 4v9h2V7.437L14.563 16 6 24.563V19H4v9h9v-2H7.437L16 17.437 24.563 26H19v2h9v-9h-2v5.563L17.437 16 26 7.437V13h2V4h-9v2h5.563L16 14.563 7.437 6H13V4z" })));
}
export default SvgExpandArrowsAltSolid;