UNPKG

374 BTypeScriptView Raw
1import * as React from 'react';
2import { AlignType } from './types';
3export type DropDirection = 'up' | 'up-centered' | 'start' | 'end' | 'down' | 'down-centered';
4export type DropdownContextValue = {
5 align?: AlignType;
6 drop?: DropDirection;
7 isRTL?: boolean;
8};
9declare const DropdownContext: React.Context<DropdownContextValue>;
10export default DropdownContext;