You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-desktop/ts/components/conversation/message/MetadataUtilComponent.tsx

31 lines
649 B
TypeScript

import styled from 'styled-components';
import React from 'react';
import {
SessionIcon,
SessionIconSize,
SessionIconType,
} from '../../session/icon';
export const MetadataSpacer = styled.span`
flex-grow: 1;
`;
/* .session-icon.check {
@include themify($themes) {
fill: subtle(themed("sentMessageText"));
} */
const MessageReadReceiptContainer = styled.div`
margin-inline-start: 5px;
`;
export const MessageReadReceipt = () => {
return (
<MessageReadReceiptContainer>
<SessionIcon
iconType={SessionIconType.Check}
iconSize={SessionIconSize.Small}
/>
</MessageReadReceiptContainer>
);
};