/* eslint-disable @typescript-eslint/no-unused-vars */ import * as React from 'react'; import {normalize} from '../utils/helpers'; import Color from '../theme/Color'; import Svg, {Defs, G, Image, Path, Pattern, Rect, Use} from 'react-native-svg'; export interface SvgProps { width: number; height: number; color: string; style?: any; } const WIDTH = 17; const HEIGHT = 17; export const UnLike = (props: SvgProps) => { //let width = props.width || normalize(WIDTH); // let height = props.height || normalize(HEIGHT); // let strokeColor = props.color || Color.black; // let style = props.style; return ( ); }; export const Like = (props: SvgProps) => { // let width = props.width || normalize(WIDTH); // let height = props.height || normalize(HEIGHT); // let strokeColor = props.color || Color.black; // let style = props.style; return ( ); };