@promptbook/google
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
23 lines (22 loc) • 555 B
TypeScript
/**
* Supported arrow directions.
*
* @private internal typing helper for `<ArrowIcon/>`
*/
type ArrowDirection = 'DOWN' | 'UP';
/**
* Props for rendering a directional arrow icon.
*
* @private internal props typing for `<ArrowIcon/>`
*/
type ArrowIconProps = {
direction: ArrowDirection;
size: number;
};
/**
* Shows simple arrow icon pointing up or down
*
* @public exported from `@promptbook/components`
*/
export declare const ArrowIcon: ({ direction, size }: ArrowIconProps) => import("react/jsx-runtime").JSX.Element;
export {};