import React from 'react'; import PropTypes from 'prop-types'; import classnames from 'classnames'; import Chip from '../../../ui/chip'; import Box from '../../../ui/box'; import Typography from '../../../ui/typography'; import { COLORS, TYPOGRAPHY, } from '../../../../helpers/constants/design-system'; const SnapsAuthorshipPill = ({ packageName, className, url }) => { return ( } backgroundColor={COLORS.WHITE} > {packageName} ); }; SnapsAuthorshipPill.propTypes = { /** * NPM package name of the snap */ packageName: PropTypes.string, /** * The className of the SnapsAuthorshipPill */ className: PropTypes.string, /** * The url of the snap's package */ url: PropTypes.string, }; export default SnapsAuthorshipPill;