react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 974 B
JavaScript
import * as React from 'react';
export function SvgPinterest(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M16 4C9.371 4 4 9.371 4 16c0 5.086 3.164 9.426 7.629 11.176-.106-.95-.203-2.406.039-3.446l1.406-5.964s-.355-.72-.355-1.782c0-1.668.965-2.914 2.168-2.914 1.023 0 1.52.77 1.52 1.692 0 1.031-.657 2.57-.997 3.996-.281 1.195.602 2.168 1.777 2.168 2.133 0 3.774-2.25 3.774-5.496 0-2.871-2.063-4.88-5.012-4.88-3.414 0-5.418 2.56-5.418 5.208 0 1.031.399 2.137.895 2.738.097.117.11.223.082.344a299.62 299.62 0 00-.332 1.36c-.055.222-.176.269-.403.16-1.5-.696-2.437-2.887-2.437-4.65 0-3.784 2.75-7.26 7.93-7.26 4.164 0 7.398 2.964 7.398 6.933 0 4.133-2.61 7.46-6.227 7.46-1.214 0-2.359-.628-2.75-1.374 0 0-.601 2.289-.75 2.851-.269 1.043-1 2.348-1.492 3.145A12.01 12.01 0 0016 28c6.629 0 12-5.371 12-12S22.629 4 16 4z" })));
}
export default SvgPinterest;