Path: blob/master/src/packages/frontend/chat/name.tsx
1496 views
import { React } from "../app-framework";12const STYLE: React.CSSProperties = {3color: "#888",4marginBottom: "1px",5marginLeft: "10px",6right: 0,7whiteSpace: "nowrap",8overflow: "hidden",9textOverflow: "ellipsis", // see https://css-tricks.com/snippets/css/truncate-string-with-ellipsis/10position: "absolute", // using the "absolute in relative" positioning trick11left: 0,12top: 0,13};1415export const Name: React.FC<{ sender_name: string }> = ({ sender_name }) => {16return (17<div style={{ position: "relative", height: "1.2em", width: "100%" }}>18<div className={"small"} style={STYLE}>19{sender_name}20</div>21</div>22);23};242526