2023-03-13 20:47:52 +00:00
|
|
|
import { useTheme } from '@tamagui/core'
|
2023-01-20 14:18:05 +00:00
|
|
|
import { ClipPath, Defs, G, 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 SvgSendMessageIcon = (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={12}
|
|
|
|
height={12}
|
|
|
|
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
|
|
|
>
|
2023-01-23 13:03:08 +00:00
|
|
|
<G
|
|
|
|
clipPath="url(#send-message-icon_svg__a)"
|
2023-03-13 20:47:52 +00:00
|
|
|
stroke="#000"
|
2023-01-23 13:03:08 +00:00
|
|
|
strokeWidth={1.1}
|
|
|
|
>
|
2023-01-20 14:18:05 +00:00
|
|
|
<Path d="m2.495 5.511 5.466-3.609a1 1 0 0 1 1.55.894l-.393 6.539c-.055.918-1.216 1.28-1.784.558L5.63 7.728l-2.727-.393c-.91-.13-1.175-1.317-.408-1.824ZM9.13 1.666l-3.5 6.062" />
|
|
|
|
</G>
|
|
|
|
<Defs>
|
2023-01-23 13:03:08 +00:00
|
|
|
<ClipPath id="send-message-icon_svg__a">
|
2023-01-20 14:18:05 +00:00
|
|
|
<Path fill="#fff" d="M0 0h12v12H0z" />
|
|
|
|
</ClipPath>
|
|
|
|
</Defs>
|
|
|
|
</Svg>
|
|
|
|
)
|
|
|
|
}
|
2023-01-23 13:03:08 +00:00
|
|
|
export default SvgSendMessageIcon
|