reablocks
Version:
Component library for React
19 lines (18 loc) • 421 B
TypeScript
import { FC } from 'react';
import { ArrowTheme } from './ArrowTheme';
export interface ArrowProps {
/**
* CSS Classname to apply to the arrow
*/
className?: string;
/**
* The direction of the arrow
* @default 'down'
*/
direction?: 'up' | 'right' | 'down' | 'left';
/**
* Theme for the Arrow.
*/
theme?: ArrowTheme;
}
export declare const Arrow: FC<ArrowProps>;