Skip to content

Commit 64f7e43

Browse files
Merge pull request #86 from cometchat/add-icons
feat: add icons
2 parents 14a8b9d + b5d74e2 commit 64f7e43

File tree

7 files changed

+18
-8
lines changed

7 files changed

+18
-8
lines changed

CometChatWorkspace/src/components/callLogs/CallLogsModules.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,45 @@
11
import React from 'react'
22
import { View, Text, TouchableOpacity, Image, StyleSheet, ScrollView } from 'react-native'
33
import { AppStyle } from '../../AppStyle';
4-
import { Component1, Component2, Component3, RightArrow } from '../../resources';
4+
import { CallLogs, Call, RightArrow, CallParticipants, CallRecording, CallHistory } from '../../resources';
55
import { CardView } from '../common/CardView';
66

77
const CallLogsModules = [
88
{
99
id: "CometChatCallLogs",
1010
name: "Call Logs Listing",
1111
info: "CometChatCallLogs is a widget which is used to display list of Call Logs.",
12-
image: Component1
12+
image: Call
1313
},
1414
{
1515
id: "CometChatCallLogsWithDetails",
1616
name: "Call Logs With Details",
1717
info: "CometChatCallLogsWithDetails is a widget which is used to display list of Call Logs with an icon to display call details.",
18-
image: Component2
18+
image: CallLogs
1919
},
2020
{
2121
id: "CometChatCallLogDetails",
2222
name: "Call Log Details",
2323
info: "CometChatCallLogDetails is a widget which is used to display call detail of a particular callLog.",
24-
image: Component3
24+
image: CallLogs
2525
},
2626
{
2727
id: "CometChatCallLogParticipants",
2828
name: "Call Log Participants",
2929
info: "CometChatCallLogParticipants is a widget that displays list of participants for a particular Call.",
30-
image: Component3
30+
image: CallParticipants
3131
},
3232
{
3333
id: "CometChatCallLogRecordings",
3434
name: "Call Log Recordings",
3535
info: "CometChatCallLogRecordings is a widget that displays list of recordings for a particular Call.",
36-
image: Component3
36+
image: CallRecording
3737
},
3838
{
3939
id: "CometChatCallLogHistory",
4040
name: "Call Log History",
4141
info: "CometChatCallLogHistory is a widget which is used to display list of call history for a particular user or group.",
42-
image: Component3
42+
image: CallHistory
4343
}
4444
];
4545

448 Bytes
Loading
392 Bytes
Loading
379 Bytes
Loading
417 Bytes
Loading
481 Bytes
Loading

CometChatWorkspace/src/resources/index.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ import Microphone from './mic.png';
4040
import Info from './info.png';
4141
import Form from './form.png';
4242
import Card from './card.png';
43+
import Call from './call.png';
44+
import CallHistory from './callhistory.png';
45+
import CallRecording from './Calllogrecording.png';
46+
import CallLogs from './Calllogs.png';
47+
import CallParticipants from './callparticipants.png';
4348

4449
export {
4550
Details,
@@ -83,5 +88,10 @@ export {
8388
Microphone,
8489
Info,
8590
Form,
86-
Card
91+
Card,
92+
Call,
93+
CallHistory,
94+
CallRecording,
95+
CallLogs,
96+
CallParticipants
8797
};

0 commit comments

Comments
 (0)