The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/client/views/room/Header/HeaderIconWithRoom.js

11 lines
288 B

import React from 'react';
import Header from '../../../components/Header';
import { useRoomIcon } from '../../../hooks/useRoomIcon';
const HeaderIconWithRoom = ({ room }) => {
const icon = useRoomIcon(room);
return <Header.Icon icon={icon} />;
};
export default HeaderIconWithRoom;