diff --git a/src/components/system/TitleBar/TitleBar.tsx b/src/components/system/TitleBar/TitleBar.tsx new file mode 100644 index 0000000..e5f5042 --- /dev/null +++ b/src/components/system/TitleBar/TitleBar.tsx @@ -0,0 +1,40 @@ +import { Maximize, Minus, X } from 'react-feather' +import { appWindow } from '@tauri-apps/api/window' + +import { Image } from '..' + +export const TitleBar: React.FC = () => { + return ( + + ) +} diff --git a/src/components/system/TitleBar/index.ts b/src/components/system/TitleBar/index.ts new file mode 100644 index 0000000..259755c --- /dev/null +++ b/src/components/system/TitleBar/index.ts @@ -0,0 +1 @@ +export * from './TitleBar'