2023-01-03 11:55:46 -08:00
|
|
|
// Copyright 2018 Signal Messenger, LLC
|
2020-10-30 15:34:04 -05:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-04-26 17:52:43 -04:00
|
|
|
import React from 'react';
|
|
|
|
|
2023-10-11 12:06:43 -07:00
|
|
|
export type Props = {
|
2018-04-26 17:52:43 -04:00
|
|
|
label: string;
|
2021-01-14 12:07:05 -06:00
|
|
|
};
|
2018-04-26 17:52:43 -04:00
|
|
|
|
2022-11-17 16:45:19 -08:00
|
|
|
export function EmptyState({ label }: Props): JSX.Element {
|
|
|
|
return <div className="module-empty-state">{label}</div>;
|
|
|
|
}
|