UNPKG

reablocks

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