import { styled } from '@linaria/react'; import { SettingsTextInput } from '@/ui/input/components/SettingsTextInput'; import { useLingui } from '@lingui/react/macro'; import { IconLink } from 'twenty-ui-deprecated/display'; import { Button } from 'twenty-ui-deprecated/input'; import { themeCssVariables } from 'twenty-ui-deprecated/theme-constants'; import { useCopyToClipboard } from '~/hooks/useCopyToClipboard'; const StyledContainer = styled.div` align-items: center; display: flex; flex-direction: row; `; const StyledLinkContainer = styled.div` flex: 1; margin-right: ${themeCssVariables.spacing[2]}; `; type WorkspaceInviteLinkProps = { inviteLink: string; }; export const WorkspaceInviteLink = ({ inviteLink, }: WorkspaceInviteLinkProps) => { const { t } = useLingui(); const { copyToClipboard } = useCopyToClipboard(); return (