diff --git a/src/components/structures/FileDropTarget.tsx b/src/components/structures/FileDropTarget.tsx index 6032de6e583..72a86978d92 100644 --- a/src/components/structures/FileDropTarget.tsx +++ b/src/components/structures/FileDropTarget.tsx @@ -17,6 +17,7 @@ limitations under the License. import React, { useEffect, useState } from "react"; import { _t } from "../../languageHandler"; +import FileDropSvg from '../../../res/img/upload-big.svg'; interface IProps { parent: HTMLElement; @@ -109,7 +110,7 @@ const FileDropTarget: React.FC = ({ parent, onFileDrop }) => { if (state.dragging) { return
- + { _t("Drop file here to upload") }
; } diff --git a/src/components/structures/GroupView.js b/src/components/structures/GroupView.js index 338e8596649..bfeec99ae7c 100644 --- a/src/components/structures/GroupView.js +++ b/src/components/structures/GroupView.js @@ -46,6 +46,12 @@ import { createSpaceFromCommunity } from "../../utils/space"; import { Action } from "../../dispatcher/actions"; import { RightPanelPhases } from "../../stores/right-panel/RightPanelStorePhases"; import { UPDATE_EVENT } from "../../stores/AsyncStore"; +import CreateRoomSvg from '../../../res/img/icons-create-room.svg'; +import CancelSmallSvg from '../../../res/img/cancel-small.svg'; +import CancelSvg from '../../../res/img/cancel.svg'; +import ExternalLinkSvg from '../../../res/img/external-link.svg'; +import AddRoomSvg from '../../../res/img/icons-room-add.svg'; +import CameraSvg from '../../../res/img/camera.svg'; const LONG_DESC_PLACEHOLDER = _td( `

HTML for your community's page

@@ -135,7 +141,7 @@ class CategoryRoomList extends React.Component { ( - +
{ _t('Add a Room') }
@@ -235,7 +241,7 @@ class FeaturedRoom extends React.Component { const deleteButton = this.props.editing ? Delete - +
{ _t('Add a User') }
@@ -386,7 +392,7 @@ class FeaturedUser extends React.Component { const deleteButton = this.props.editing ? Delete - + ; } @@ -925,7 +931,7 @@ export default class GroupView extends React.Component { onClick={this._onAddRoomsClick} >
- +
{ _t('Add rooms to this community') } @@ -1257,7 +1263,7 @@ export default class GroupView extends React.Component {