diff --git a/frontend/src/features/dashboard/components/ActionBar.tsx b/frontend/src/features/dashboard/components/ActionBar.tsx new file mode 100644 index 0000000..3464d8b --- /dev/null +++ b/frontend/src/features/dashboard/components/ActionBar.tsx @@ -0,0 +1,38 @@ +/** + * @ai-summary Compact action bar for dashboard with Add Vehicle and Log Fuel buttons + */ + +import React from 'react'; +import Button from '@mui/material/Button'; +import Add from '@mui/icons-material/Add'; +import LocalGasStation from '@mui/icons-material/LocalGasStation'; + +interface ActionBarProps { + onAddVehicle: () => void; + onLogFuel: () => void; +} + +export const ActionBar: React.FC = ({ onAddVehicle, onLogFuel }) => { + return ( +
+ + +
+ ); +};