diff --git a/src/components/ButtonLateralMenu.tsx b/src/components/ButtonLateralMenu.tsx new file mode 100644 index 0000000..5503c02 --- /dev/null +++ b/src/components/ButtonLateralMenu.tsx @@ -0,0 +1,12 @@ +import { Link } from "@tanstack/react-router"; +import { LinkHTMLAttributes } from "react"; + +type Props = LinkHTMLAttributes + +export default function ButtonLateralMenu(props: Props) { + return ( + + {props.children} + + ) +} \ No newline at end of file diff --git a/src/components/LateralMenu.tsx b/src/components/LateralMenu.tsx new file mode 100644 index 0000000..98ed328 --- /dev/null +++ b/src/components/LateralMenu.tsx @@ -0,0 +1,39 @@ +import { ArrowUpLeftFromSquare, BadgeDollarSign, Flame, Info, Layers, LayoutGrid, LogOut, Package, Settings, StretchHorizontal, Ticket, User, Users } from "lucide-react"; +import ButtonLateralMenu from "./ButtonLateralMenu"; + +type Props = { + style: boolean +} + +export default function LateralMenu(props: Props) { + return ( + + ) +} \ No newline at end of file diff --git a/src/routeTree.gen.ts b/src/routeTree.gen.ts index 6692212..c793b4b 100644 --- a/src/routeTree.gen.ts +++ b/src/routeTree.gen.ts @@ -1,4 +1,3 @@ -/* eslint-disable eslint-comments/no-unlimited-disable */ /* prettier-ignore-start */ /* eslint-disable */ diff --git a/unocss.config.ts b/unocss.config.ts index 487e46e..eee7e48 100644 --- a/unocss.config.ts +++ b/unocss.config.ts @@ -8,5 +8,7 @@ export default defineConfig({ 'margin-label': ' mt-[15px] mb-[5px]', 'input-border': ' border border-[#E4E7E9] rounded-[8px] shadow-sm box-border pl-[50px]', 'text-sad': 'text-[#8B8E99]', + 'flex-col': 'flex flex-col', + 'text-blue': 'text-[#3858D6]', }, })