react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 731 B
JavaScript
import * as React from 'react';
export function SvgTired(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M16 3C8.832 3 3 8.832 3 16s5.832 13 13 13 13-5.832 13-13S23.168 3 16 3zm0 2c6.065 0 11 4.935 11 11s-4.935 11-11 11S5 22.065 5 16 9.935 5 16 5zm-5.945 6.168l-1.11 1.664L10.697 14l-1.752 1.168 1.11 1.664L14.303 14l-4.248-2.832zm11.89 0L17.697 14l4.248 2.832 1.11-1.664L21.303 14l1.752-1.168-1.11-1.664zM16 19c-2.604 0-4.334 2.159-4.947 3.344a.447.447 0 00.535.633C12.605 22.643 14.349 22 16 22c1.651 0 3.395.644 4.412.977a.447.447 0 00.535-.633C20.334 21.16 18.604 19 16 19z" })));
}
export default SvgTired;