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

import {type ViewStyleProp} from '#/alf'

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