summaryrefslogtreecommitdiff
path: root/src/components/toolbar/Toolbar.tsx
blob: b2217e0ceb7680b83764057366ab3258c50773b8 (plain)
1
2
3
4
5
6
7
8
9
import React from 'react';

export interface ToolbarProps {
    children?: React.ReactNode;
}

export const Toolbar: React.FC<ToolbarProps> = ({ children }) => {
    return <div className="toolbar">{children}</div>;
};