revamp template
This commit is contained in:
11
src/layouts/demo2/toolbar/ToolbarActions.tsx
Normal file
11
src/layouts/demo2/toolbar/ToolbarActions.tsx
Normal file
@ -0,0 +1,11 @@
|
||||
import { ReactNode } from 'react';
|
||||
|
||||
export interface IToolbarActionsProps {
|
||||
children?: ReactNode;
|
||||
}
|
||||
|
||||
const ToolbarActions = ({ children }: IToolbarActionsProps) => {
|
||||
return <div className="flex items-center gap-1">{children}</div>;
|
||||
};
|
||||
|
||||
export { ToolbarActions };
|
||||
Reference in New Issue
Block a user