import React from 'react'; import PropTypes from 'prop-types'; import { AlignItems, BackgroundColor, BorderRadius, Color, FLEX_DIRECTION, TextVariant, } from '../../../../helpers/constants/design-system'; import Box from '../../../ui/box'; import { BUTTON_VARIANT, Button, Icon, IconName, IconSize, Text, } from '../../../component-library'; import Preloader from '../../../ui/icon/preloader/preloader-icon.component'; const SnapVersion = ({ version, url }) => { return ( ); }; SnapVersion.propTypes = { /** * The version of the snap */ version: PropTypes.string, /** * The url to the snap package */ url: PropTypes.string, }; export default SnapVersion;