2022-03-31 11:39:49 +00:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
|
2022-11-08 10:24:32 +00:00
|
|
|
import { IconPin } from '../../../base/icons';
|
2022-03-31 11:39:49 +00:00
|
|
|
import { BaseIndicator } from '../../../base/react';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Thumbnail badge for displaying if a participant is pinned.
|
|
|
|
*
|
|
|
|
* @returns {React$Element<any>}
|
|
|
|
*/
|
|
|
|
export default function PinnedIndicator() {
|
|
|
|
return (
|
2022-11-08 10:24:32 +00:00
|
|
|
<BaseIndicator icon = { IconPin } />
|
2022-03-31 11:39:49 +00:00
|
|
|
);
|
|
|
|
}
|