import { CopyIcon } from '@primer/octicons-react' import { toast } from './Toaster' interface Props { name: string value: string isCopyable?: boolean } export default function Attribute({ name, value, isCopyable }: Props) { const canCopy = isCopyable ?? false return (
{name}
{canCopy ? ( ) : (
{value}
)}
) }