import React from 'react'; import classnames from 'classnames'; import { AlignItems, BorderRadius, TextVariant, IconColor, BackgroundColor, Display, } from '../../../helpers/constants/design-system'; import { AvatarNetwork, AvatarNetworkSize, Box, IconName, Icon, IconSize, Text, } from '..'; import { BoxProps, PolymorphicRef } from '../box'; import { PickerNetworkComponent, PickerNetworkProps, } from './picker-network.types'; export const PickerNetwork: PickerNetworkComponent = React.forwardRef( ( { className = '', avatarNetworkProps, iconProps, label, src, ...props }: PickerNetworkProps, ref?: PolymorphicRef, ) => { return ( )} > {label} ); }, );