react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 559 B
JavaScript
import * as React from 'react';
export function SvgFoursquare(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M10 5c-1.094 0-2 .906-2 2v18.719c0 .508.36.972.781 1.125.414.148.985.027 1.313-.344l6.312-7.5h3.438a2.03 2.03 0 001.968-1.625l1.938-10C23.984 6.16 23.02 5 21.781 5zm0 2h11.781L21 11h-6.531a.48.48 0 00-.469.469v1.062c0 .25.219.469.469.469h6.156l-.781 4h-3.938a.999.999 0 00-.781.344L10 23.5z" })));
}
export default SvgFoursquare;