react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 595 B
JavaScript
import * as React from 'react';
export function SvgGoodreads(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M5 5v22h22V5H5zm2 2h18v18H7V7zm8.5 2c-2.481 0-4.5 2.243-4.5 5s2.019 5 4.5 5c1.421 0 2.675-.75 3.5-1.896V18.5c0 1.93-1.57 3.5-3.5 3.5a3.495 3.495 0 01-3.148-2h-1.077c.621 1.742 2.272 3 4.225 3 2.481 0 4.5-2.019 4.5-4.5V10h-1v.896C18.175 9.75 16.921 9 15.5 9zm0 1c1.93 0 3.5 1.794 3.5 4s-1.57 4-3.5 4-3.5-1.794-3.5-4 1.57-4 3.5-4z" })));
}
export default SvgGoodreads;