mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-20 07:26:19 +00:00
🆙 Update the navigator
This commit is contained in:
@@ -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>
|
||||
);
|
||||
};
|
||||
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user