Skip to content

Commit 6ca3d4d

Browse files
v
1 parent 1aa9f11 commit 6ca3d4d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+3816
-0
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
import { trans } from "i18n/design";
2+
import { ReactNode } from "react";
3+
import styled from "styled-components";
4+
import { ReactComponent as MeetingContainerDrag } from "icons/icon-left-comp-video.svg";
5+
6+
type MeetingContainerPlaceholderProps = {
7+
children?: ReactNode;
8+
};
9+
10+
const HintText = styled.span`
11+
font-size: 13px;
12+
color: #b8b9bf;
13+
text-align: center;
14+
`;
15+
16+
export function MeetingContainerPlaceholder(
17+
props: MeetingContainerPlaceholderProps
18+
) {
19+
return (
20+
<div
21+
style={{
22+
width: "100%",
23+
height: "100%",
24+
display: "flex",
25+
alignItems: "center",
26+
justifyContent: "center",
27+
}}
28+
>
29+
<HintText>
30+
<MeetingContainerDrag
31+
style={{ verticalAlign: "bottom", marginRight: "8px" }}
32+
/>
33+
{props.children}
34+
</HintText>
35+
</div>
36+
);
37+
}
38+
39+
export const MeetingHintPlaceHolder = (
40+
<MeetingContainerPlaceholder>
41+
{trans("container.hintPlaceHolder")}
42+
</MeetingContainerPlaceholder>
43+
);

node_modules/.bin/uuid

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.yarn-integrity

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/uuid/CHANGELOG.md

Lines changed: 274 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/uuid/CONTRIBUTING.md

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/uuid/LICENSE.md

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)