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

35 lines
755 B
TypeScript

import * as React from 'react';
import Svg, { SvgProps, Path } from 'react-native-svg';
function SvgMouseButtonLeft(
props: SvgProps,
svgRef?: React.Ref<React.Component<SvgProps>>
) {
return (
<Svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
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;