xuchang-new/src/components/Common/BottomItemBackground/index.jsx
2024-01-24 15:39:42 +08:00

19 lines
357 B
JavaScript

import cls from './index.module.css';
import Container from '../../Container';
function BottomBarItem(props) {
return (
<Container
icon={props.icon}
title={props.title}
desc="hello world"
className={`${cls.bottomBarItem} ${props.className}`}
style={props.style}
>
{props.children}
</Container>
);
}
export default BottomBarItem;