mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 16:34:54 +00:00
28 lines
920 B
TypeScript
28 lines
920 B
TypeScript
import * as React from "react"
|
|
import Svg, { Path, SvgProps } from "react-native-svg"
|
|
const ProfileIcon: React.FC<SvgProps> = (props) => (
|
|
<Svg
|
|
width={22}
|
|
height={22}
|
|
viewBox="0 0 21 21"
|
|
fill="none"
|
|
{...props}
|
|
>
|
|
<Path
|
|
stroke={props.color || "red"}
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={1.414}
|
|
d="M10.956 11.538a.91.91 0 0 0-.226 0 3.083 3.083 0 0 1-2.98-3.084 3.089 3.089 0 0 1 3.093-3.093 3.09 3.09 0 0 1 .113 6.176ZM17.199 17.762a9.368 9.368 0 0 1-6.356 2.47 9.368 9.368 0 0 1-6.356-2.47c.095-.886.66-1.754 1.67-2.433 2.583-1.716 6.808-1.716 9.373 0 1.009.68 1.575 1.547 1.669 2.433Z"
|
|
/>
|
|
<Path
|
|
stroke={props.color || "red"}
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={1.414}
|
|
d="M10.843 20.233a9.43 9.43 0 1 0 0-18.86 9.43 9.43 0 0 0 0 18.86Z"
|
|
/>
|
|
</Svg>
|
|
)
|
|
export default ProfileIcon
|