/** * WordPress dependencies */ import { link, linkOff } from '@wordpress/icons'; import { __ } from '@wordpress/i18n'; /** * Internal dependencies */ import Button from '../button'; import Tooltip from '../tooltip'; export default function LinkedButton( { isLinked, ...props }: { isLinked?: boolean } & React.ComponentProps< typeof Button > ) { const label = isLinked ? __( 'Unlink sides' ) : __( 'Link sides' ); return (