import React from 'react'; import type { SendbirdAdminMessage } from '@sendbird/uikit-utils'; import Box from '../../components/Box'; import Text from '../../components/Text'; import useUIKitTheme from '../../theme/useUIKitTheme'; import type { OpenChannelMessageProps } from './index'; const AdminMessage = (props: OpenChannelMessageProps) => { const { colors } = useUIKitTheme(); const color = colors.ui.openChannelMessage.default; return ( {props.message.message} ); }; export default AdminMessage;