// @flow import React from 'react'; import classnames from 'classnames'; import { clipboard } from 'electron'; import Button from 'component/button'; type Props = { shortUrl: ?string, uri: string, doToast: ({ message: string }) => void, inline?: boolean, noShortUrl?: boolean, }; function ClaimUri(props: Props) { const { shortUrl, uri, doToast, inline = false, noShortUrl = false } = props; return (