import PropTypes from 'prop-types'; // material-ui import { Box, Grid, Link, Stack, Typography } from '@mui/material'; // assets import { GlobalOutlined, NodeExpandOutlined } from '@ant-design/icons'; // ==============================|| COMPONENTS - BREADCRUMBS ||============================== // const ComponentHeader = ({ title, caption, directory, link }) => ( {title} {caption && ( {caption} )} {directory && ( {directory} )} {link && ( {link} )} ); ComponentHeader.propTypes = { title: PropTypes.string, caption: PropTypes.string, directory: PropTypes.string, link: PropTypes.string }; export default ComponentHeader;