import * as React from 'react'; import {normalize} from '../utils/helpers'; import Color from '../theme/Color'; import Svg, {Path} from 'react-native-svg'; export interface HeaderProps { width: number; height: number; color: string; } const WIDTH = 17; const HEIGHT = 17; export const HeaderHelp = (props: HeaderProps) => { let width = props.width || normalize(WIDTH); let height = props.height || normalize(HEIGHT); let strokeColor = props.color || Color.black; return ( ); }; export const HeaderReconnect = (props: HeaderProps) => { let width = props.width || normalize(WIDTH); let height = props.height || normalize(HEIGHT); let strokeColor = props.color || Color.black; return ( ); }; export const HeaderClose = (props: HeaderProps) => { let width = props.width || normalize(WIDTH); let height = props.height || normalize(HEIGHT); let strokeColor = props.color || Color.black; return ( ); }; export const HeaderLiveAgent = (props: HeaderProps) => { let width = props.width || normalize(WIDTH); let height = props.height || normalize(HEIGHT); let strokeColor = props.color || Color.black; return ( ); }; export const HeaderLeft = (props: HeaderProps) => { let width = props.width || normalize(WIDTH); let height = props.height || normalize(HEIGHT); let strokeColor = props.color || Color.black; return ( ); }; export const HeaderMinimize = (props: HeaderProps) => { let width = props.width || normalize(WIDTH); let height = props.height || normalize(HEIGHT); let strokeColor = props.color || Color.black; return ( ); };