-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathsearch-icons.js
More file actions
27 lines (26 loc) · 1.89 KB
/
search-icons.js
File metadata and controls
27 lines (26 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Common chat balloon icons in react-icons
const icons = [
{ name: 'BiChat', lib: 'react-icons/bi', desc: 'Box Icons - single chat bubble' },
{ name: 'BiMessageRounded', lib: 'react-icons/bi', desc: 'Box Icons - rounded message' },
{ name: 'BsChatDots', lib: 'react-icons/bs', desc: 'Bootstrap - chat with dots' },
{ name: 'BsChat', lib: 'react-icons/bs', desc: 'Bootstrap - simple chat' },
{ name: 'BsChatSquare', lib: 'react-icons/bs', desc: 'Bootstrap - square chat' },
{ name: 'IoChatbubbles', lib: 'react-icons/io5', desc: 'Ionicons - two overlapping bubbles' },
{ name: 'IoChatbubblesOutline', lib: 'react-icons/io5', desc: 'Ionicons - two bubbles outline' },
{ name: 'MdChat', lib: 'react-icons/md', desc: 'Material - chat icon' },
{ name: 'MdChatBubble', lib: 'react-icons/md', desc: 'Material - chat bubble' },
{ name: 'RiChat3Line', lib: 'react-icons/ri', desc: 'Remix - chat line style' },
{ name: 'RiChat3Fill', lib: 'react-icons/ri', desc: 'Remix - chat filled' },
{ name: 'FaComments', lib: 'react-icons/fa', desc: 'Font Awesome - two overlapping bubbles' },
{ name: 'FaComment', lib: 'react-icons/fa', desc: 'Font Awesome - single bubble' },
{ name: 'FiMessageCircle', lib: 'react-icons/fi', desc: 'Feather - circle message' },
{ name: 'FiMessageSquare', lib: 'react-icons/fi', desc: 'Feather - square message' },
{ name: 'HiChatAlt2', lib: 'react-icons/hi', desc: 'Heroicons - two chat bubbles' },
{ name: 'HiChat', lib: 'react-icons/hi', desc: 'Heroicons - single chat' }
];
console.log('Two overlapping balloon/bubble icons:');
console.log('----------------------------------------');
console.log('1. IoChatbubbles (Ionicons) - Two overlapping chat bubbles');
console.log('2. IoChatbubblesOutline (Ionicons) - Outline version');
console.log('3. FaComments (Font Awesome) - Classic two overlapping bubbles');
console.log('4. HiChatAlt2 (Heroicons) - Alternative two bubble style');