react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 542 B
JavaScript
import * as React from 'react';
export function SvgStackExchange(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M9 4C6.8 4 5 5.8 5 8v14c0 2.2 1.8 4 4 4h8v4.219h1.563l.312-.313L22.563 26H23c2.2 0 4-1.8 4-4V8c0-2.2-1.8-4-4-4zm0 2h14c1.117 0 2 .883 2 2v1H7V8c0-1.117.883-2 2-2zm-2 5h18v3H7zm0 5h18v3H7zm0 5h18v1c0 1.117-.883 2-2 2h-1.313l-.28.313L19 26.843V24H9c-1.117 0-2-.883-2-2z" })));
}
export default SvgStackExchange;