列表综合筛选

This commit is contained in:
juguohong
2025-08-24 16:24:49 +08:00
parent e6124131e7
commit 8cfe0ab0b0
34 changed files with 620 additions and 1339 deletions

View File

@@ -4,8 +4,19 @@
margin-bottom: 10px;
gap: 6px;
}
.icon {
width: 16px;
height: 16px;
image {
width: 100%;
height: 100%;
}
}
.title {
font-weight: 600;
font-size: 16px;
line-height: 20px;
}
}

View File

@@ -2,15 +2,16 @@ import styles from "./index.module.scss";
interface IProps {
title: string;
className?: string;
icon?: JSX.Element;
}
const TitleComponent = (props: IProps) => {
const { title, className } = props;
const { title, className, icon } = props;
return (
<>
<div
className={`${styles.titleContainer} ${className ? className : ""} `}
>
<div></div>
<div className={styles.icon}>{icon}</div>
<h1 className={styles.title}>{title}</h1>
</div>
</>