UNPKG

fabri-pix

Version:

A React image editor using Fabric.js

17 lines (16 loc) 473 B
import { default as React } from 'react'; import { Canvas } from 'fabric'; interface IProps { canvas: React.RefObject<Canvas>; selectedObject: any; stepCreatorRef: React.RefObject<{ borderColor: string; backgroundColor: string; fontColor: string; fontSize: number; stepNumber: number; strokeWidth: number; }>; } declare const StepsCreatorContextMenu: React.FC<IProps>; export default StepsCreatorContextMenu;