react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 333 B
JavaScript
import * as React from 'react';
export function SvgCommentAlt(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M3 5v18h5v5.078L14.352 23H29V5zm2 2h22v14H13.648L10 23.918V21H5z" })));
}
export default SvgCommentAlt;