react-icons/md#MdVerified JavaScript Examples
The following examples show how to use
react-icons/md#MdVerified.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Message.jsx From realtime-chat-supabase-react with Apache License 2.0 | 5 votes |
export default function Message({ message, isYou }) {
const countyCode =
message.country && message.country !== "undefined"
? message.country.toLowerCase()
: "";
return (
<Box display="grid" justifyItems={isYou ? "end" : "start"}>
<Grid
templateRows="30px 1fr 25px"
templateColumns="1fr"
w="70%"
px="3"
py="2"
borderRadius="5px"
borderTopLeftRadius={isYou ? "5px" : "0"}
borderTopRightRadius={isYou ? "0" : "5px"}
bg={isYou ? "#dbfff9" : "#edf3f9"}
mt="5"
position="relative"
_after={{
position: "absolute",
content: "''",
width: 0,
height: 0,
borderStyle: "solid",
borderWidth: isYou ? "0px 0px 10px 10px" : "0px 10px 10px 0",
borderColor: isYou
? "transparent transparent transparent #dbfff9"
: "transparent #edf3f9 transparent transparent",
top: 0,
left: isYou ? "auto" : "-10px",
right: isYou ? "-10px" : "auto",
}}
>
<GridItem
fontWeight="500"
fontSize="md"
justifySelf="start"
color="gray.500"
mb="2"
>
<span>{message.username} </span>
{message.is_authenticated && (
<MdVerified
color="#1d9bf0"
style={{ display: "inline", marginRight: "5px" }}
/>
)}
{countyCode && (
<Box display="inline-block" fontSize="10px">
from {message.country}{" "}
<img
style={{ display: "inline-block", marginTop: "-4px" }}
src={`/flags/${countyCode}.png`}
alt={message.country}
/>
</Box>
)}
</GridItem>
<GridItem
justifySelf="start"
textAlign="left"
wordBreak="break-word"
fontSize="md"
fontFamily="Montserrat, sans-serif"
>
{message.text}
</GridItem>
<GridItem
color="gray"
fontSize="10px"
justifySelf="end"
alignSelf="end"
>
{dayjs(message.timestamp).fromNow()}
</GridItem>
</Grid>
</Box>
);
}