react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 617 B
JavaScript
import * as React from 'react';
export function SvgCrosshairsSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M15 3v2.063C9.734 5.538 5.54 9.733 5.062 15H3v2h2.063c.476 5.266 4.671 9.46 9.937 9.938V29h2v-2.063c5.266-.476 9.46-4.671 9.938-9.937H29v-2h-2.063C26.462 9.734 22.267 5.54 17 5.062V3zm0 4.031V9h2V7.031A8.999 8.999 0 0124.969 15H23v2h1.969A8.999 8.999 0 0117 24.969V23h-2v1.969A8.999 8.999 0 017.031 17H9v-2H7.031A8.999 8.999 0 0115 7.031z" })));
}
export default SvgCrosshairsSolid;