25 lines
916 B
TypeScript
25 lines
916 B
TypeScript
import { SVGProps } from "react";
|
|
import { JSX } from "react/jsx-runtime";
|
|
|
|
function MicroOnIcon(props: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>) {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width={24}
|
|
height={24}
|
|
fill="none"
|
|
{...props}
|
|
>
|
|
<path
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={1.5}
|
|
d="M12 17.786c1.591 0 3.117-.542 4.243-1.507C17.368 15.315 18 14.007 18 12.643v-1.286m-6 6.429c-1.591 0-3.117-.542-4.243-1.507C6.632 15.315 6 14.007 6 12.643v-1.286m6 6.429V21m-3.75 0h7.5M12 15.214c-.796 0-1.559-.27-2.121-.753C9.316 13.98 9 13.325 9 12.643V5.57c0-.682.316-1.336.879-1.818C10.44 3.271 11.204 3 12 3s1.559.27 2.121.753c.563.482.879 1.136.879 1.818v7.072c0 .682-.316 1.336-.879 1.818-.562.482-1.325.753-2.121.753Z"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default MicroOnIcon;
|