UNPKG

@useloops/design-system

Version:

The official React based Loops design system

26 lines (23 loc) 696 B
import { FunctionComponent, ReactNode } from 'react'; interface GraphPopoverDataLayoutProps { primaryHeadlineLabel: ReactNode; secondarySlot1?: ReactNode; secondarySlot2?: ReactNode; slotProps?: { root?: { sx?: Record<string, any>; }; primaryHeadline?: { sx?: Record<string, any>; }; secondarySlot1?: { sx?: Record<string, any>; }; secondarySlot2?: { sx?: Record<string, any>; }; }; } declare const GraphPopoverDataLayout: FunctionComponent<GraphPopoverDataLayoutProps>; export { GraphPopoverDataLayout as default }; export type { GraphPopoverDataLayoutProps };