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

import {type ViewStyleProp} from '#/alf'

export type ProfileHoverCardProps = ViewStyleProp & {
  children: React.ReactNode
  did: string
  disable?: boolean
}