react-iconslab
Version:
This package contains a set of commonly used SVG icons: **Email**, **User Profile**, and **Delete** as React components.
19 lines (16 loc) • 406 B
JavaScript
import React from "react";
const UserProfileIcon = () => (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
>
<circle cx="12" cy="7" r="4" />
<path d="M12 14c-4 0-6 2-6 4v2h12v-2c0-2-2-4-6-4z" />
</svg>
);
export default UserProfileIcon;