import React from 'react'; import PropTypes from 'prop-types'; import { Color, AlignItems, JustifyContent, Display, BlockSize, IconColor, TextVariant, } from '../../../../helpers/constants/design-system'; import { Icon, IconName, IconSize, Text, Box, } from '../../../component-library'; import SnapAvatar from '../snap-avatar'; const SnapSettingsCard = ({ name, packageName, onClick, snapId }) => { return ( {name} {packageName} ); }; SnapSettingsCard.propTypes = { /** * Name of the snap */ name: PropTypes.string, /** * Name of a snap package */ packageName: PropTypes.string, /** * onClick event handler */ onClick: PropTypes.func, /** * ID of a snap. */ snapId: PropTypes.string.isRequired, }; export default SnapSettingsCard;