列晒筛选

This commit is contained in:
juguohong
2025-08-18 00:36:57 +08:00
parent db48e55b05
commit 169eaffb96
13 changed files with 193 additions and 50 deletions

View File

@@ -0,0 +1,11 @@
.titleContainer {
display: flex;
align-items: center;
margin-bottom: 10px;
gap: 6px;
}
.title {
font-weight: 600;
font-size: 16px;
line-height: 20px;
}

View File

@@ -0,0 +1,19 @@
import styles from "./index.module.scss";
interface IProps {
title: string;
className?: string;
}
const TitleComponent = (props: IProps) => {
const { title, className } = props;
return (
<>
<div
className={`${styles.titleContainer} ${className ? className : ""} `}
>
<div></div>
<h1 className={styles.title}>{title}</h1>
</div>
</>
);
};
export default TitleComponent;