@synergycodes/overflow-ui
Version:
A React library for creating node-based UIs and diagram-driven applications. Perfect for React Flow users, providing ready-to-use node templates and components that work seamlessly with React Flow's ecosystem.
17 lines (16 loc) • 437 B
TypeScript
export type ValidationStatus = 'invalid';
type Props = {
/**
* The validation status to display.
*/
status?: ValidationStatus;
/**
* Custom class name for the component.
*/
className?: string;
};
/**
* A component that displays a visual indicator based on validation status.
*/
export declare function Status({ status, className }: Props): import("react/jsx-runtime").JSX.Element | null;
export {};