mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-03 03:11:40 +00:00
15 lines
417 B
TypeScript
15 lines
417 B
TypeScript
|
|
import { RiSettings2Fill } from 'react-icons/ri';
|
||
|
|
import { PageHeader } from '/@/renderer/components';
|
||
|
|
import { LibraryHeaderBar } from '/@/renderer/features/shared';
|
||
|
|
|
||
|
|
export const SettingsHeader = () => {
|
||
|
|
return (
|
||
|
|
<PageHeader>
|
||
|
|
<LibraryHeaderBar>
|
||
|
|
<RiSettings2Fill size="2rem" />
|
||
|
|
<LibraryHeaderBar.Title>Settings</LibraryHeaderBar.Title>
|
||
|
|
</LibraryHeaderBar>
|
||
|
|
</PageHeader>
|
||
|
|
);
|
||
|
|
};
|