aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
25 lines • 816 B
TypeScript
export interface MolecularBond {
id: string;
from: string;
to: string;
strength: number;
type?: "ionic" | "covalent" | "hydrogen" | "van-der-waals";
resonance?: number;
}
export interface MoleculeNode {
id: string;
symbol: string;
name: string;
charge?: number;
valence?: number;
electronegativity?: number;
}
export interface MolecularBondingInterfaceProps {
className?: string;
molecules?: MoleculeNode[];
bonds?: MolecularBond[];
onInspectBond?: (bond: MolecularBond) => void;
}
export declare function MolecularBondingInterface({ className, molecules, bonds, onInspectBond, }: MolecularBondingInterfaceProps): import("react/jsx-runtime").JSX.Element;
export default MolecularBondingInterface;
//# sourceMappingURL=MolecularBondingInterface.d.ts.map