about summary refs log tree commit diff
path: root/src/components/ProfileHoverCard/types.ts
blob: 37087dc95ab24c235deadddb1026bd1c03ac94b1 (plain) (blame)
1
2
3
4
5
6
7
8
import type React from 'react'

export type ProfileHoverCardProps = {
  children: React.ReactElement
  did: string
  inline?: boolean
  disable?: boolean
}