blob: 53513c695011884308cbd38093ca50af8a1ff9c1 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import {type ViewStyleProp} from '#/alf'
export type ProfileHoverCardProps = ViewStyleProp & {
children: React.ReactNode
did: string
disable?: boolean
inline?: boolean
}
|