import * as React from 'react';
import {normalize} from '../utils/helpers';
import Color from '../theme/Color';
import Svg, {Path} from 'react-native-svg';
export interface SvgProps {
width: number;
height: number;
color: string;
}
const WIDTH = 17;
const HEIGHT = 17;
export const MicIcon = (props: SvgProps) => {
let width = props.width || normalize(WIDTH);
let height = props.height || normalize(HEIGHT);
let strokeColor = props.color || Color.black;
return (
);
};
export const SpeakerIcon = (props: SvgProps) => {
let width = props.width || normalize(WIDTH);
let height = props.height || normalize(HEIGHT);
let strokeColor = props.color || Color.black;
return (
);
};
export const SpeakerOffIcon = (props: SvgProps) => {
let width = props.width || normalize(WIDTH);
let height = props.height || normalize(HEIGHT);
let strokeColor = props.color || Color.black;
return (
);
};
export const MenuIcon = (props: SvgProps) => {
let width = props.width || normalize(WIDTH);
let height = props.height || normalize(HEIGHT);
let strokeColor = props.color || Color.black;
return (
);
};
export const AttachmentIcon = (props: SvgProps) => {
let width = props.width || normalize(WIDTH);
let height = props.height || normalize(HEIGHT);
let strokeColor = props.color || Color.black;
return (
);
};
export const KeyboardIcon = (props: SvgProps) => {
let width = props.width || normalize(WIDTH);
let height = props.height || normalize(HEIGHT);
let strokeColor = props.color || Color.black;
return (
);
};
export const SendIcon = (props: SvgProps) => {
let width = props.width || normalize(WIDTH);
let height = props.height || normalize(HEIGHT);
let strokeColor = props.color || Color.white;
return (
);
};
export const HappyIcon = (props: SvgProps) => {
let width = props.width || normalize(WIDTH);
let height = props.height || normalize(HEIGHT);
let strokeColor = props.color || Color.white;
return (
);
};