1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

#23 removed lab head

This commit is contained in:
Fedor Katurov 2021-03-24 17:48:34 +07:00
parent 462c27ee89
commit 8a9a9b9104

View file

@ -6,22 +6,26 @@ interface IProps {
isLoading?: boolean; isLoading?: boolean;
} }
const LabHead: FC<IProps> = ({ isLoading }) => ( const LabHead: FC<IProps> = ({ isLoading }) => {
<div className={styles.wrap}> return null;
<div className={styles.group}>
<LabHeadItem icon="recent" active isLoading={isLoading}>
Свежие
</LabHeadItem>
<LabHeadItem icon="hot" isLoading={isLoading}> return (
Популярные <div className={styles.wrap}>
</LabHeadItem> <div className={styles.group}>
<LabHeadItem icon="recent" active isLoading={isLoading}>
Свежие
</LabHeadItem>
<LabHeadItem icon="star_full" isLoading={isLoading}> <LabHeadItem icon="hot" isLoading={isLoading}>
Важные Популярные
</LabHeadItem> </LabHeadItem>
<LabHeadItem icon="star_full" isLoading={isLoading}>
Важные
</LabHeadItem>
</div>
</div> </div>
</div> );
); };
export { LabHead }; export { LabHead };