import * as React from "react"; import type { ToolbarOwnProps, PolymorphicWithRef } from "../types"; import { ToolbarBase } from "../base-components"; type ToolbarProps = PolymorphicWithRef< T, ToolbarOwnProps >; type ToolbarElement = ( props: ToolbarProps ) => React.ReactElement>; const Toolbar: ToolbarElement = React.forwardRef( ( props: ToolbarProps, innerRef: typeof props.ref ) => { const { component, ...rest } = props; return ; } ); export default Toolbar;