You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
983 B
35 lines
983 B
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';
|
|
import MetaMaskTranslation from '../metamask-translation';
|
|
import NetworkDisplay from '../network-display';
|
|
import TextArea from '../../ui/textarea/textarea';
|
|
import ConfirmationNetworkSwitch from '../../../pages/confirmation/components/confirmation-network-switch';
|
|
import UrlIcon from '../../ui/url-icon';
|
|
import Tooltip from '../../ui/tooltip/tooltip';
|
|
|
|
export const safeComponentList = {
|
|
MetaMaskTranslation,
|
|
a: 'a',
|
|
b: 'b',
|
|
p: 'p',
|
|
div: 'div',
|
|
span: 'span',
|
|
Typography,
|
|
Chip,
|
|
DefinitionList,
|
|
TruncatedDefinitionList,
|
|
Button,
|
|
Popover,
|
|
Box,
|
|
NetworkDisplay,
|
|
TextArea,
|
|
ConfirmationNetworkSwitch,
|
|
UrlIcon,
|
|
Tooltip,
|
|
i: 'i',
|
|
};
|
|
|