import { Box, Button, styled, useTheme } from '@mui/material'; import Typography from '@mui/material/Typography'; import ToolBreadcrumb from './ToolBreadcrumb'; import { capitalizeFirstLetter } from '../utils/string'; import Grid from '@mui/material/Grid'; import { Icon, IconifyIcon } from '@iconify/react'; import { categoriesColors } from '../config/uiConfig'; const StyledButton = styled(Button)(({ theme }) => ({ backgroundColor: 'white', '&:hover': { backgroundColor: theme.palette.primary.main, color: 'white' } })); interface ToolHeaderProps { title: string; description: string; icon?: IconifyIcon | string; type: string; } function ToolLinks() { const theme = useTheme(); return ( Use This Tool See Examples Learn How to Use ); } export default function ToolHeader({ icon, title, description, type }: ToolHeaderProps) { return ( {title} {description} {icon && ( )} ); }