8337cb251f
* Link to comments & highlight comment * Copy link, show toast and fade bg * Remove unused imports * Standardize link copied toast * Add linking to answer comment threads * Refactor open answers component, use indigo highlight * Distinguish chosen answer a bit more
29 lines
845 B
TypeScript
29 lines
845 B
TypeScript
import clsx from 'clsx'
|
|
import { Contract, contractUrl } from 'web/lib/firebase/contracts'
|
|
import { CopyLinkButton } from './copy-link-button'
|
|
import { Col } from './layout/col'
|
|
import { Row } from './layout/row'
|
|
|
|
export function ShareMarket(props: { contract: Contract; className?: string }) {
|
|
const { contract, className } = props
|
|
|
|
return (
|
|
<Col className={clsx(className, 'gap-3')}>
|
|
<div>Share your market</div>
|
|
<Row className="mb-6 items-center">
|
|
<input
|
|
className="input input-bordered flex-1 rounded-r-none text-gray-500"
|
|
readOnly
|
|
type="text"
|
|
value={contractUrl(contract)}
|
|
/>
|
|
<CopyLinkButton
|
|
contract={contract}
|
|
buttonClassName="btn-md rounded-l-none"
|
|
toastClassName={'-left-28 mt-1'}
|
|
/>
|
|
</Row>
|
|
</Col>
|
|
)
|
|
}
|