import Svg, { Path, Defs, LinearGradient, Stop } from 'react-native-svg'; interface PointsIconProps { width?: number | string; height?: number | string; style?: any; } export const PointsIcon = ({width = 14, height = 14, style}: PointsIconProps) => ( );