/** * External dependencies */ import clsx from 'clsx'; /** * Internal dependencies */ import './style.scss'; import { Networks } from './networks'; import { Profiles } from './profiles'; import { TargetSelector } from './target-selector'; import { useDoesActiveNetworkSupport } from '../../../hooks'; export type MultipleProfileSelectorProps = { readonly disabled?: boolean; }; export const MultipleProfileSelector = ( { disabled, }: MultipleProfileSelectorProps ): JSX.Element => { const className = 'nelio-content-multiple-profile-selector'; const supportsText = useDoesActiveNetworkSupport( 'text' ); return (