UNPKG

design-system-simplefi

Version:

Design System for SimpleFi Applications

18 lines (17 loc) 515 B
import { PortalPlacements } from './useCalculatePortalPlacements.enums'; export declare type StyleProps = { width: number; space: number; left?: number; right?: number; top?: number; zIndex?: number; bottom?: number; minWidth?: number | string; }; export declare type Placements = typeof PortalPlacements[keyof typeof PortalPlacements]; export declare type UseCalculatePortalPlacementOptions = { placement: Placements; width?: number; space?: number; };