apphouse
Version:
Component library for React that uses observable state management and theme-able components.
16 lines (15 loc) • 388 B
TypeScript
/// <reference types="react" />
import { ThemeColors } from '../styles/defaults/themes.interface';
interface InlinePromptProps {
children: React.ReactNode;
/**
* @default 0.2
*/
backgroundOpacity?: number;
/**
* @default surface20
*/
backgroundColor?: keyof ThemeColors;
}
export declare const InlinePrompt: React.FC<InlinePromptProps>;
export {};