mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-23 15:31:22 +02:00
20 lines
403 B
JavaScript
20 lines
403 B
JavaScript
import React from 'react';
|
|
|
|
export function TextualCompletion({
|
|
title,
|
|
subtitle,
|
|
description,
|
|
}: {
|
|
title: ?string,
|
|
subtitle: ?string,
|
|
description: ?string
|
|
}) {
|
|
return (
|
|
<div style={{width: '100%'}}>
|
|
<span>{title}</span>
|
|
<em>{subtitle}</em>
|
|
<span style={{color: 'gray', float: 'right'}}>{description}</span>
|
|
</div>
|
|
);
|
|
}
|