react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 471 B
JavaScript
import * as React from 'react';
export function SvgMedkitSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M14 5c-1.094 0-2 .906-2 2v1H6c-1.645 0-3 1.355-3 3v15h26V11c0-1.645-1.355-3-3-3h-6V7c0-1.094-.906-2-2-2zm0 2h4v1h-4zm-8 3h20c.566 0 1 .434 1 1v13H5V11c0-.566.434-1 1-1zm9 3v3h-3v2h3v3h2v-3h3v-2h-3v-3z" })));
}
export default SvgMedkitSolid;