mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-18 12:17:03 +02:00
20 lines
387 B
JavaScript
20 lines
387 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'}}>{description}</span>
|
|
</div>
|
|
);
|
|
}
|