2023-03-13 20:47:52 +00:00
|
|
|
import { useTheme } from '@tamagui/core'
|
2023-01-20 14:18:05 +00:00
|
|
|
import { Defs, Path, RadialGradient, Stop, 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 SvgLoveIcon = (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={16}
|
|
|
|
height={16}
|
|
|
|
fill="none"
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
{...props}
|
|
|
|
>
|
|
|
|
<Path
|
|
|
|
d="M.5 5.5C.5 10 5.79 15 8 15s7.5-5 7.5-9.5c0-2.21-1.5-4-3.5-4-1.758 0-3.25.791-3.787 2.5-.107.25-.16.25-.213.25-.053 0-.106 0-.213-.25C7.251 2.291 5.757 1.5 4 1.5 2 1.5.5 3.29.5 5.5Z"
|
|
|
|
fill="#E45852"
|
|
|
|
/>
|
|
|
|
<Path
|
|
|
|
d="M.5 5.5C.5 10 5.79 15 8 15s7.5-5 7.5-9.5c0-2.21-1.5-4-3.5-4-1.758 0-3.25.791-3.787 2.5-.107.25-.16.25-.213.25-.053 0-.106 0-.213-.25C7.251 2.291 5.757 1.5 4 1.5 2 1.5.5 3.29.5 5.5Z"
|
2023-01-23 13:03:08 +00:00
|
|
|
fill="url(#love-icon_svg__a)"
|
2023-01-20 14:18:05 +00:00
|
|
|
/>
|
|
|
|
<Defs>
|
|
|
|
<RadialGradient
|
2023-01-23 13:03:08 +00:00
|
|
|
id="love-icon_svg__a"
|
2023-01-20 14:18:05 +00:00
|
|
|
cx={0}
|
|
|
|
cy={0}
|
|
|
|
r={1}
|
|
|
|
gradientUnits="userSpaceOnUse"
|
|
|
|
gradientTransform="rotate(93.897 1.536 6.375) scale(10.3452 9.89501)"
|
|
|
|
>
|
|
|
|
<Stop stopColor="#F05D56" />
|
|
|
|
<Stop offset={1} stopColor="#D15954" />
|
|
|
|
</RadialGradient>
|
|
|
|
</Defs>
|
|
|
|
</Svg>
|
|
|
|
)
|
|
|
|
}
|
2023-01-23 13:03:08 +00:00
|
|
|
export default SvgLoveIcon
|