react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 451 B
JavaScript
import * as React from 'react';
export function SvgTagSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M16 5l-.313.281L4.281 16.813l-.687.687.687.719 9.5 9.5.719.687.688-.687 11.53-11.407L27 16V5zm.844 2H25v8.156L14.5 25.594 6.406 17.5zM22 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" })));
}
export default SvgTagSolid;