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 SvgExclamationSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M13 4v16h6V4zm2 2h2v12h-2zm-2 16v6h6v-6zm2 2h2v2h-2z" })));
}
export default SvgExclamationSolid;