Files
web/components/TempDesignSystem/Popover/popover.ts
2024-11-28 09:24:44 +01:00

7 lines
214 B
TypeScript

import type { PopoverProps as RAPopoverProps } from "react-aria-components"
export interface PopoverProps extends Omit<RAPopoverProps, "children"> {
triggerContent: React.ReactNode
children: React.ReactNode
}