dappconnect-sdks/packages/icons/20/close-icon.tsx

31 lines
872 B
TypeScript

import { useTheme } from '@tamagui/core'
import { Path, Svg } from 'react-native-svg'
import type { IconProps } from '../types'
const SvgCloseIcon = (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
return (
<Svg
width={20}
height={20}
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<Path
fillRule="evenodd"
clipRule="evenodd"
d="m10 10.874 4.543 4.588.914-.924-4.542-4.588 4.443-4.488-.915-.924L10 9.026 5.557 4.538l-.915.924L9.085 9.95l-4.542 4.588.914.924L10 10.874Z"
fill={color}
/>
</Svg>
)
}
export default SvgCloseIcon