import { ResizableBox, ResizeCallbackData } from "react-resizable"; import React, { SyntheticEvent, useState } from "react"; import Draggable from "react-draggable"; import { CircleStackIcon } from "@heroicons/react/24/outline"; import Logo from "../logo"; type FieldPropsType = { color: string; type: string; }; export default function Field(props: FieldPropsType) { return ( { e.preventDefault(); e.stopPropagation(); }} >
Signature
); }