react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 925 B
JavaScript
import * as React from 'react';
export function SvgLastfmSquare(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M5 5v22h22V5H5zm2 2h18v18H7V7zm5.611 5.107c-2.36 0-3.611 1.495-3.611 4.03 0 2.438 1.251 3.756 3.498 3.756 1.812 0 2.68-.85 2.68-.85l-.512-1.397s-.832.932-2.084.932c-1.108 0-1.896-.963-1.896-2.504 0-1.974.993-2.678 1.974-2.678 1.817 0 2.044 1.457 2.758 3.69.512 1.554 1.477 2.807 4.252 2.807 1.987 0 3.334-.61 3.33-2.215 0-1.992-1.712-2.208-3.143-2.518-.705-.162-.916-.45-.916-.931 0-.547.434-.868 1.14-.868.77 0 1.185.289 1.251.98l1.607-.193c-.127-1.445-1.12-2.039-2.757-2.039-1.44 0-2.856.542-2.856 2.293 0 1.09.53 1.782 1.861 2.102 1.23.289 2.184.38 2.184 1.252 0 .595-.578.836-1.668.836-1.62 0-2.293-.85-2.678-2.024-.876-2.649-1.196-4.46-4.414-4.46z" })));
}
export default SvgLastfmSquare;