iconoir/packages/iconoir-react/src/server/MouseButtonLeft.tsx

33 lines
747 B
TypeScript

import * as React from "react";
function SvgMouseButtonLeft(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M20 10v4a8 8 0 11-16 0V9a7 7 0 017-7h1a8 8 0 018 8z"
stroke="currentColor"
strokeLinecap="round"
/>
<path
d="M12 2v6.4a.6.6 0 01-.6.6H4"
stroke="currentColor"
strokeLinecap="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgMouseButtonLeft);
export default ForwardRef;