openreplay/frontend/app/components/shared/SharePopup/SessionCopyLink/SessionCopyLink.tsx
2022-02-10 22:55:07 +01:00

13 lines
No EOL
328 B
TypeScript

import React from 'react'
import { IconButton } from 'UI'
function SessionCopyLink() {
return (
<div className="flex justify-between items-center w-full border-t -mx-4 px-4">
<IconButton label="Copy Link" icon="link-45deg" />
<div>Copied to Clipboard</div>
</div>
)
}
export default SessionCopyLink