import React from 'react'; import PropTypes from 'prop-types'; import classnames from 'classnames'; import { AvatarNetwork } from '../avatar-network'; import { Icon, ICON_NAMES } from '../icon'; import { Text } from '../text'; import Box from '../../ui/box'; import { ALIGN_ITEMS, COLORS, DISPLAY, SIZES, BORDER_RADIUS, TEXT, } from '../../../helpers/constants/design-system'; export const PickerNetwork = ({ className, avatarNetworkProps, iconProps, label, src, ...props }) => { return ( {label} ); }; PickerNetwork.propTypes = { /** * The src accepts the string of the image to be rendered */ src: PropTypes.string, /** * An additional className to apply to the PickerNetwork. */ className: PropTypes.string, /** * It accepts all the props from AvatarNetwork */ avatarNetworkProps: PropTypes.shape(AvatarNetwork.PropTypes), /** * It accepts all the props from Icon */ iconProps: PropTypes.shape(Icon.PropTypes), /** * The text content of the PickerNetwork component */ label: PropTypes.string.isRequired, /** * PickerNetwork accepts all the props from Box */ ...Box.propTypes, };