Page MenuHomePhorge

thread-pill.react.js
No OneTemporary

Size
506 B
Referenced Files
None
Subscribers
None

thread-pill.react.js

// @flow
import * as React from 'react';
import type { ThreadInfo } from 'lib/types/thread-types';
import Pill from './pill.react';
type Props = {
+threadInfo: ThreadInfo,
+roundCorners?: { +left: boolean, +right: boolean },
};
function ThreadPill(props: Props): React.Node {
const { threadInfo, roundCorners } = props;
return (
<Pill
backgroundColor={`#${threadInfo.color}`}
label={threadInfo.uiName}
roundCorners={roundCorners}
/>
);
}
export default ThreadPill;

File Metadata

Mime Type
text/x-java
Expires
Fri, Jan 9, 1:02 PM (21 h, 14 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5882757
Default Alt Text
thread-pill.react.js (506 B)

Event Timeline