react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 611 B
JavaScript
import * as React from 'react';
export function SvgThermometerFullSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M12 4v11.469c-1.75 1.27-3 3.207-3 5.531 0 3.855 3.145 7 7 7s7-3.145 7-7c0-2.324-1.25-4.262-3-5.531V14h2v-2h-2v-2h2V8h-2V6h2V4zm2 2h4v10.406l.5.282c1.496.867 2.5 2.46 2.5 4.312 0 2.773-2.227 5-5 5s-5-2.227-5-5c0-1.852 1.004-3.445 2.5-4.313l.5-.28zm1 2v10.188c-1.16.414-2 1.511-2 2.812a3 3 0 006 0c0-1.3-.84-2.398-2-2.813V8z" })));
}
export default SvgThermometerFullSolid;