import * as React from "react";
interface InlineControlsProps {
/**
* TODO: Add a description
*/
children: React.ReactNode;
}
/**
* The toolbar of or Button Groups for controlling formatting, etc
*/
const InlineControls: React.FC = ({ children }) => {
return {children}
;
};
export default InlineControls;