react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 538 B
JavaScript
import * as React from 'react';
export function SvgVialSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M18.688 3.273L17.27 4.687l1.32 1.32L5.5 19.1c-2 2-2 5.4 0 7.4 1 1 2.4 1.5 3.7 1.5 1.4 0 2.7-.5 3.7-1.5l13.092-13.092 1.25 1.248 1.414-1.414-9.968-9.969zm1.304 4.135l4.6 4.6L20.6 16h-9.2l8.592-8.592zM9.4 18h9.2l-7.1 7.1c-1.3 1.3-3.3 1.3-4.6 0-1.3-1.3-1.3-3.3 0-4.6L9.4 18z" })));
}
export default SvgVialSolid;