🆙 Update the navigator

This commit is contained in:
duckietm
2026-02-26 10:25:04 +01:00
parent faadd0cf31
commit 7ab3b24331
49 changed files with 716 additions and 282 deletions
@@ -0,0 +1,23 @@
import { FC } from 'react';
import { FaBolt } from 'react-icons/fa';
export interface LayoutSearchSavesViewProps
{
title: string;
onClick?: () => void;
}
export const LayoutSearchSavesView: FC<LayoutSearchSavesViewProps> = props =>
{
const { title = null, onClick = null } = props;
return (
<div
title={ title }
onClick={ onClick }
style={{ backgroundColor: '#FAA700', borderRadius: 4, padding: '2px 4px', fontSize: 10, height: 17, display: 'flex', alignItems: 'center', cursor: 'pointer', color: 'white' }}
>
<FaBolt />
</div>
);
};
+1
View File
@@ -19,6 +19,7 @@ export * from './LayoutRarityLevelView';
export * from './LayoutRoomObjectImageView';
export * from './LayoutRoomPreviewerView';
export * from './LayoutRoomThumbnailView';
export * from './LayoutSearchSavesView';
export * from './LayoutTrophyView';
export * from './UserProfileIconView';
export * from './limited-edition';