import { Box, Stack, useTheme } from '@mui/material' import SettingsIcon from '@mui/icons-material/Settings' import Typography from '@mui/material/Typography' import React, { ReactNode } from 'react' export default function ToolOptions({ children }: { children: ReactNode }) { const theme = useTheme() return ( Tool options {children} ) }