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

30 lines
761 B
TypeScript

import * as React from "react";
function SvgShareAndroid(
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="M18 22a3 3 0 100-6 3 3 0 000 6zM18 8a3 3 0 100-6 3 3 0 000 6zM6 15a3 3 0 100-6 3 3 0 000 6z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path d="M15.5 6.5l-7 4M8.5 13.5l7 4" stroke="currentColor" />
</svg>
);
}
const ForwardRef = React.forwardRef(SvgShareAndroid);
export default ForwardRef;