mirror of
https://github.com/supabase/supabase.git
synced 2026-05-07 23:19:23 +08:00
Sorted all imports in all packages, `cms`, `design-system` and `ui-library` apps by running `pnpm format` on them. All changes in this PR are done by the script.
40 lines
983 B
TypeScript
40 lines
983 B
TypeScript
'use client'
|
|
|
|
import { Check, Copy } from 'lucide-react'
|
|
import * as React from 'react'
|
|
import { Button, cn, copyToClipboard } from 'ui'
|
|
|
|
interface CopyButtonProps extends React.HTMLAttributes<HTMLButtonElement> {
|
|
value: string
|
|
src?: string
|
|
}
|
|
|
|
export function CopyButton({ value, className, src, ...props }: CopyButtonProps) {
|
|
const [hasCopied, setHasCopied] = React.useState(false)
|
|
|
|
React.useEffect(() => {
|
|
setTimeout(() => {
|
|
setHasCopied(false)
|
|
}, 2000)
|
|
}, [hasCopied])
|
|
|
|
return (
|
|
<Button
|
|
size="small"
|
|
type="outline"
|
|
className={cn(
|
|
'relative z-10 h-6 w-6 text-foreground-muted hover:bg-surface-100 hover:text-foreground p-0',
|
|
className
|
|
)}
|
|
onClick={() => {
|
|
copyToClipboard(value)
|
|
setHasCopied(true)
|
|
}}
|
|
{...props}
|
|
>
|
|
<span className="sr-only">Copy</span>
|
|
{hasCopied ? <Check className="h-3 w-3 text-brand-600" /> : <Copy className="h-3 w-3" />}
|
|
</Button>
|
|
)
|
|
}
|