import * as React from "react"; interface InlineControlButtonProps { /** * TODO: Add a description */ children: React.ReactNode; } /** * A single button that displays on the toolbar */ const InlineControlButton: React.FC = ({ children, }) => { return
{children}
; }; export default InlineControlButton;