Adjusted the border-radius and border of quotes to better match the container

This commit is contained in:
Alvaro 2023-02-17 14:43:16 -07:00 committed by GitHub
parent 485bca6be9
commit 164f64fec0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 82 additions and 19 deletions

View file

@ -738,6 +738,31 @@ Sticker.args = {
status: 'sent',
};
export const Quote = Template.bind({});
Quote.args = {
quote: {
text: 'hello my good friend',
conversationColor: 'ultramarine',
conversationTitle: 'Convo',
isFromMe: false,
sentAt: 0,
authorId: '',
authorTitle: 'Author',
referencedMessageNotFound: false,
isViewOnce: false,
isGiftBadge: false,
},
author: {
id: '',
isMe: false,
title: 'Quoter Dude',
sharedGroupNames: [],
acceptedMessageRequest: true,
badges: [],
},
conversationType: 'group',
};
export function Deleted(): JSX.Element {
const propsSent = createProps({
conversationType: 'direct',