react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 596 B
JavaScript
import * as React from 'react';
export function SvgIdBadge(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M15 3c-1.094 0-2 .906-2 2H7v23h18V5h-6c0-1.094-.906-2-2-2zm0 2h2v2h-2zM9 7h4v2h6V7h4v19H9zm7 4c-2.2 0-4 1.8-4 4 0 1.113.477 2.117 1.219 2.844A5.036 5.036 0 0011 22h2c0-1.668 1.332-3 3-3s3 1.332 3 3h2a5.036 5.036 0 00-2.219-4.156C19.523 17.117 20 16.114 20 15c0-2.2-1.8-4-4-4zm0 2c1.117 0 2 .883 2 2s-.883 2-2 2-2-.883-2-2 .883-2 2-2z" })));
}
export default SvgIdBadge;