2023-03-13 20:47:52 +00:00
|
|
|
import { useTheme } from '@tamagui/core'
|
2023-01-20 14:18:05 +00:00
|
|
|
import { Path, Svg } from 'react-native-svg'
|
|
|
|
|
2023-03-13 20:47:52 +00:00
|
|
|
import type { IconProps } from '../types'
|
2023-01-20 14:18:05 +00:00
|
|
|
|
2023-03-13 20:47:52 +00:00
|
|
|
const SvgMultiProfileIcon = (props: IconProps) => {
|
|
|
|
const { color: token = '$neutral-100' } = props
|
|
|
|
const theme = useTheme()
|
|
|
|
/* eslint-disable-next-line @typescript-eslint/ban-ts-comment */
|
|
|
|
// @ts-ignore
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
|
|
const color = theme[token]?.val ?? token
|
2023-01-20 14:18:05 +00:00
|
|
|
return (
|
|
|
|
<Svg
|
|
|
|
width={20}
|
|
|
|
height={20}
|
|
|
|
fill="none"
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
2023-03-13 20:47:52 +00:00
|
|
|
{...props}
|
2023-01-20 14:18:05 +00:00
|
|
|
>
|
|
|
|
<Path
|
|
|
|
fillRule="evenodd"
|
|
|
|
clipRule="evenodd"
|
|
|
|
d="M12.5 3.15c.941 0 1.614 0 2.145.037.524.035.862.104 1.137.218a3.35 3.35 0 0 1 1.813 1.813c.114.275.183.613.219 1.138.036.53.036 1.203.036 2.144v2a3.35 3.35 0 0 1-1.723 2.929c-.004.105-.01.207-.016.304-.03.444-.085.835-.192 1.197a4.652 4.652 0 0 0 3.231-4.43V8.476c0-.912 0-1.629-.04-2.209-.04-.59-.123-1.087-.314-1.546a4.65 4.65 0 0 0-2.516-2.517c-.46-.19-.956-.274-1.547-.314-.58-.04-1.297-.04-2.209-.04H8.5a4.652 4.652 0 0 0-4.43 3.23 5.569 5.569 0 0 1 1.197-.19c.098-.007.199-.013.304-.017a3.35 3.35 0 0 1 2.93-1.723h4Z"
|
|
|
|
fill={color}
|
|
|
|
/>
|
|
|
|
<Path
|
|
|
|
fillRule="evenodd"
|
|
|
|
clipRule="evenodd"
|
|
|
|
d="M7.476 4.85h2.048c.912 0 1.629 0 2.209.04.59.04 1.087.123 1.547.314a4.65 4.65 0 0 1 2.516 2.517c.19.46.274.955.314 1.546.04.58.04 1.297.04 2.209v.048c0 .912 0 1.629-.04 2.209-.04.59-.123 1.086-.314 1.546a4.65 4.65 0 0 1-2.516 2.517c-.46.19-.956.274-1.547.314-.58.04-1.297.04-2.209.04H7.476c-.911 0-1.629 0-2.209-.04-.59-.04-1.086-.123-1.546-.314a4.65 4.65 0 0 1-2.517-2.516c-.19-.46-.274-.956-.314-1.547-.04-.58-.04-1.297-.04-2.209v-.048c0-.912 0-1.629.04-2.209.04-.59.124-1.087.314-1.546a4.65 4.65 0 0 1 2.517-2.517c.46-.19.955-.274 1.546-.314.58-.04 1.298-.04 2.21-.04Zm-2.12 1.337c-.525.035-.863.104-1.138.218a3.35 3.35 0 0 0-1.813 1.813c-.114.275-.183.613-.218 1.138-.037.53-.037 1.203-.037 2.144 0 .94 0 1.614.037 2.144.035.525.104.863.218 1.138a3.35 3.35 0 0 0 1.813 1.813c.275.114.613.183 1.138.218.53.037 1.203.037 2.144.037h2c.94 0 1.614 0 2.145-.037.524-.035.862-.104 1.137-.218a3.35 3.35 0 0 0 1.813-1.813c.114-.275.183-.613.218-1.138.037-.53.037-1.203.037-2.144 0-.94 0-1.614-.037-2.144-.035-.525-.104-.863-.218-1.138a3.35 3.35 0 0 0-1.813-1.813c-.275-.114-.613-.183-1.137-.218-.531-.037-1.204-.037-2.145-.037h-2c-.94 0-1.614 0-2.144.037Z"
|
|
|
|
fill={color}
|
|
|
|
/>
|
|
|
|
<Path
|
|
|
|
fillRule="evenodd"
|
|
|
|
clipRule="evenodd"
|
|
|
|
d="M6 9.15a.85.85 0 1 0 0 1.7.85.85 0 0 0 0-1.7ZM3.85 10a2.15 2.15 0 1 1 4.3 0 2.15 2.15 0 0 1-4.3 0Z"
|
|
|
|
fill={color}
|
|
|
|
/>
|
|
|
|
</Svg>
|
|
|
|
)
|
|
|
|
}
|
2023-01-23 13:03:08 +00:00
|
|
|
export default SvgMultiProfileIcon
|