summaryrefslogtreecommitdiff
path: root/components/Sidebar/Title.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'components/Sidebar/Title.tsx')
-rw-r--r--components/Sidebar/Title.tsx25
1 files changed, 25 insertions, 0 deletions
diff --git a/components/Sidebar/Title.tsx b/components/Sidebar/Title.tsx
new file mode 100644
index 0000000..5d39190
--- /dev/null
+++ b/components/Sidebar/Title.tsx
@@ -0,0 +1,25 @@
+import { Flex, Heading } from '@chakra-ui/react'
+import React from 'react'
+import { BiFile } from 'react-icons/bi'
+
+import { OrgRoamNode } from '../../api'
+export interface TitleProps {
+ previewNode: OrgRoamNode
+}
+
+export const Title = (props: TitleProps) => {
+ const { previewNode } = props
+ return (
+ <Flex maxW="90%">
+ {/* <BiFile
+ * // onContextMenu={(e) => {
+ * // e.preventDefault()
+ * // openContextMenu(previewNode, e)
+ * // }}
+ * /> */}
+ <Heading lineHeight={1.2} size="md" fontWeight={600} pt={4}>
+ {previewNode?.title}
+ </Heading>
+ </Flex>
+ )
+}