Emoji provider, DDG working, style improvements
This commit is contained in:
parent
769b3f0c2a
commit
b9d7743e5a
8 changed files with 127 additions and 37 deletions
13
src/autocomplete/Components.js
Normal file
13
src/autocomplete/Components.js
Normal file
|
@ -0,0 +1,13 @@
|
|||
export function TextualCompletion(props: {
|
||||
title: ?string,
|
||||
subtitle: ?string,
|
||||
description: ?string
|
||||
}) {
|
||||
return (
|
||||
<div className="mx_Autocomplete_Completion">
|
||||
<span>{completion.title}</span>
|
||||
<em>{completion.subtitle}</em>
|
||||
<span style={{color: 'gray', float: 'right'}}>{completion.description}</span>
|
||||
</div>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue