@0xsequence/connect
Version:
Connect package for Sequence Web SDK
54 lines • 1.09 kB
TypeScript
import type { ModalPosition } from '../types.js';
export interface modalPositionCss {
top?: string;
left?: string;
right?: string;
bottom?: string;
}
export declare const getModalPositionCss: (position: ModalPosition) => {
top: string;
right: string;
left?: undefined;
bottom?: undefined;
} | {
top: string;
left: string;
right?: undefined;
bottom?: undefined;
} | {
top: string;
right?: undefined;
left?: undefined;
bottom?: undefined;
} | {
bottom: string;
right: string;
top?: undefined;
left?: undefined;
} | {
bottom: string;
left: string;
top?: undefined;
right?: undefined;
} | {
bottom: string;
top?: undefined;
right?: undefined;
left?: undefined;
} | {
right: string;
top?: undefined;
left?: undefined;
bottom?: undefined;
} | {
left: string;
top?: undefined;
right?: undefined;
bottom?: undefined;
} | {
top?: undefined;
right?: undefined;
left?: undefined;
bottom?: undefined;
};
//# sourceMappingURL=styling.d.ts.map