@tscircuit/props 0.0.457 → 0.0.459

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1453,7 +1453,7 @@ export interface SchematicLineProps {
1453
1453
 
1454
1454
  ```ts
1455
1455
  export interface SchematicPathProps {
1456
- points: Point[];
1456
+ points?: Point[];
1457
1457
  svgPath?: string;
1458
1458
  strokeWidth?: Distance;
1459
1459
  strokeColor?: string;
@@ -1680,6 +1680,9 @@ export interface SymbolProps {
1680
1680
  * because you have a complex symbol. Default is "right" and this is most intuitive.
1681
1681
  */
1682
1682
  originalFacingDirection?: "up" | "down" | "left" | "right";
1683
+ width?: string | number;
1684
+ height?: string | number;
1685
+ name?: string;
1683
1686
  }
1684
1687
  ```
1685
1688