UNPKG

circuit-bricks

Version:

A modular, Lego-style SVG circuit component system for React (ALPHA - Not for production use)

17 lines 607 B
/** * PropertyPanel Component * * A component for editing the properties of a circuit component. * This is a styled wrapper around the HeadlessPropertyPanel component. */ import React from 'react'; import { ComponentInstance } from '../schemas/componentSchema'; export interface PropertyPanelProps { component: ComponentInstance | null; onPropertyChange?: (id: string, key: string, value: any) => void; className?: string; style?: React.CSSProperties; } declare const PropertyPanel: React.FC<PropertyPanelProps>; export default PropertyPanel; //# sourceMappingURL=PropertyPanel.d.ts.map