reablocks
Version:
Component library for React
14 lines (13 loc) • 449 B
TypeScript
export interface ArrowTheme {
/** CSS class applied to the root arrow element. */
base: string;
/** CSS class applied when the arrow points up. */
up: string;
/** CSS class applied when the arrow points down. */
down: string;
/** CSS class applied when the arrow points right. */
right: string;
/** CSS class applied when the arrow points left. */
left: string;
}
export declare const arrowTheme: ArrowTheme;