@codecademy/gamut

68.2.268.2.3-alpha.d44ad5.0
dist/Tip/shared/popoverAlignmentUtils.d.ts
+dist/Tip/shared/popoverAlignmentUtils.d.tsNew file
+4
Index: package/dist/Tip/shared/popoverAlignmentUtils.d.ts
===================================================================
--- package/dist/Tip/shared/popoverAlignmentUtils.d.ts
+++ package/dist/Tip/shared/popoverAlignmentUtils.d.ts
@@ -0,0 +1,4 @@
+import { PopoverProps, PopoverXPositionType, PopoverYPositionType } from '../../Popover';
+import { TipPlacementComponentProps, TipWrapperProps } from './types';
+export declare const getAlignmentStyles: ({ alignment, avatar, type, }: Pick<TipWrapperProps, "alignment" | "avatar" | "type">) => "avatarAligned" | "previewAligned" | "horizontalCenter" | "vertCenter" | "aligned";
+export declare const getPopoverAlignmentAndPattern: ({ alignment, type, }: Partial<Pick<TipPlacementComponentProps, "alignment" | "type">>) => (PopoverXPositionType & Pick<PopoverProps, "align">) | (PopoverYPositionType & Pick<PopoverProps, "align">);