import 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 Play = (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 Pause = (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 ( ); };