react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 957 B
JavaScript
import * as React from 'react';
export function SvgYinYangSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M16 4C9.383 4 4 9.383 4 16s5.383 12 12 12h.25c.086.004.164 0 .25 0v-.031C22.883 27.703 28 22.445 28 16c0-5.875-4.258-10.758-9.844-11.781A6.44 6.44 0 0016.5 4v.031C16.332 4.023 16.168 4 16 4zm0 2c.348 0 .695.027 1.031.063.125.015.254.007.375.03.032.005.063.028.094.032A4.472 4.472 0 0121 10.5c0 2.496-2.004 4.5-4.5 4.5-3.578 0-6.5 2.922-6.5 6.5 0 1.07.258 2.078.719 2.969C7.887 22.707 6 19.589 6 16c0-5.535 4.465-10 10-10zm6.719 2.625C24.727 10.453 26 13.063 26 16c0 5.43-4.3 9.805-9.688 9.969C13.906 25.867 12 23.934 12 21.5c0-2.496 2.004-4.5 4.5-4.5 3.578 0 6.5-2.922 6.5-6.5 0-.648-.102-1.281-.281-1.875zM16.5 9a1.5 1.5 0 100 3 1.5 1.5 0 000-3zm0 11a1.5 1.5 0 100 3 1.5 1.5 0 000-3z" })));
}
export default SvgYinYangSolid;