Spaces:
Running
Running
File size: 598 Bytes
5f07a23 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import { Plus, HelpCircle } from 'lucide-react';
const BottomToolBar = () => {
const tools = [
{ id: 'add', icon: Plus, label: 'Add' },
{ id: 'help', icon: HelpCircle, label: 'Help' }
];
return (
<div className="flex flex-col gap-2 rounded-xl p-2 opacity-0">
{tools.map((tool) => (
<div key={tool.id} className="relative">
<button
className="p-2 rounded-lg"
title={tool.label}
>
<tool.icon className="w-5 h-5" />
</button>
</div>
))}
</div>
);
};
export default BottomToolBar; |