2021-02-04 19:15:23 +01:00
|
|
|
import Button from '../../ui/button';
|
|
|
|
import Chip from '../../ui/chip';
|
|
|
|
import DefinitionList from '../../ui/definition-list';
|
|
|
|
import TruncatedDefinitionList from '../../ui/truncated-definition-list';
|
|
|
|
import Popover from '../../ui/popover';
|
|
|
|
import Typography from '../../ui/typography';
|
|
|
|
import Box from '../../ui/box';
|
2021-02-12 18:24:50 +01:00
|
|
|
import MetaMaskTranslation from '../metamask-translation';
|
2021-02-22 17:20:42 +01:00
|
|
|
import NetworkDisplay from '../network-display';
|
2022-01-31 19:41:07 +01:00
|
|
|
import TextArea from '../../ui/textarea/textarea';
|
2022-04-25 20:28:52 +02:00
|
|
|
import ConfirmationNetworkSwitch from '../../../pages/confirmation/components/confirmation-network-switch';
|
2021-02-02 19:14:04 +01:00
|
|
|
|
|
|
|
export const safeComponentList = {
|
2021-02-12 18:24:50 +01:00
|
|
|
MetaMaskTranslation,
|
2021-02-22 17:20:42 +01:00
|
|
|
a: 'a',
|
2021-02-02 19:14:04 +01:00
|
|
|
b: 'b',
|
|
|
|
p: 'p',
|
|
|
|
div: 'div',
|
|
|
|
span: 'span',
|
|
|
|
Typography,
|
|
|
|
Chip,
|
|
|
|
DefinitionList,
|
|
|
|
TruncatedDefinitionList,
|
|
|
|
Button,
|
|
|
|
Popover,
|
|
|
|
Box,
|
2021-02-22 17:20:42 +01:00
|
|
|
NetworkDisplay,
|
2022-01-31 19:41:07 +01:00
|
|
|
TextArea,
|
2022-04-25 20:28:52 +02:00
|
|
|
ConfirmationNetworkSwitch,
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|