diff options
author | Eric Bailey <git@esb.lol> | 2025-06-18 15:41:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-18 13:41:58 -0700 |
commit | 51babe016403a2cff6b38a2a7c9a4d22cb867138 (patch) | |
tree | 198e99a626c424e4a927c5f68759909f430c02d9 /src/components/ProfileHoverCard/types.ts | |
parent | 04a2a227fc8bdd2a5d145ccf208b3a00e7a6f80a (diff) | |
download | voidsky-51babe016403a2cff6b38a2a7c9a4d22cb867138.tar.zst |
Fix anchor text overflow in threads v2 (#8530)
Diffstat (limited to 'src/components/ProfileHoverCard/types.ts')
-rw-r--r-- | src/components/ProfileHoverCard/types.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/components/ProfileHoverCard/types.ts b/src/components/ProfileHoverCard/types.ts index 01ef0fce7..7d9e19ac5 100644 --- a/src/components/ProfileHoverCard/types.ts +++ b/src/components/ProfileHoverCard/types.ts @@ -1,7 +1,9 @@ import type React from 'react' -export type ProfileHoverCardProps = { - children: React.ReactElement +import {type ViewStyleProp} from '#/alf' + +export type ProfileHoverCardProps = ViewStyleProp & { + children: React.ReactNode did: string disable?: boolean } |