/** * Class to hold different phone svg styles */ export class Svg { /** * Get phone svg style 1 with circle button * @param imageId - id of svg image */ static getCircleType(imageId: string): string { return ` ` } /** * Get phone svg style 1 with rounded rectangle button * @param imageId - id of svg image */ static getRectangleType(imageId: string): string { return ` `; } /** * Get phone svg style 1 without button, screen only * @param imageId - id of svg image */ static getNoneType(imageId: string): string { return ` `; } }