office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
57 lines (56 loc) • 1.23 kB
TypeScript
import { RectangleEdge } from '../../../utilities/positioning';
import { IBaseProps, IRefObject } from '../../../Utilities';
export interface IBeak {
}
export interface IBeakProps extends IBaseProps<IBeak> {
/**
* All props for your component are to be defined here.
*/
componentRef?: IRefObject<IBeak>;
/**
* Beak width.
* @default 18
* @deprecated
*/
width?: number;
/**
* Beak height.
* @default 18
* @deprecated
*/
height?: number;
/**
* Color of the beak
*/
color?: string;
/**
* Left position of the beak
*/
left?: string;
/**
* Top position of the beak
*/
top?: string;
/**
* Right position of the beak
*/
right?: string;
/**
* Bottom position of the beak
*/
bottom?: string;
/**
* Direction of beak
*/
direction?: RectangleEdge;
}
export interface IBeakStylesProps {
left?: string | undefined;
top?: string | undefined;
bottom?: string | undefined;
right?: string | undefined;
width?: string;
height?: string;
transform?: string;
color?: string;
}