import React from 'react'; import { TruncatedPath } from './TruncatedPath'; interface CopyButtonWithModalProps { label: string; text: string; variant?: 'blue' | 'yellow'; } /** * Wrapper component for TruncatedPath with label support. * This component is kept for backward compatibility. * Internally uses TruncatedPath for consistent behavior. */ export const CopyButtonWithModal: React.FC = ({ label, text, variant = 'blue' }) => { return ( ); };