@xcritical/popover
Version:
10 lines (9 loc) • 543 B
TypeScript
import { CSSObject } from 'styled-components';
import { IThemed, ArrowDirection } from '../interfaces';
export declare const getPopperProperty: ({ theme, appearance, baseAppearance, }: IThemed) => (propertyPath: string[]) => any;
export declare const getContentStyles: (props: IThemed) => CSSObject;
export declare const getArrowSizes: (props: IThemed, arrowDirection: ArrowDirection) => {
width: string;
height: string;
};
export declare const getArrowBorderWidth: (props: IThemed, arrowDirection: ArrowDirection) => string;