mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-12 00:17:03 +02:00
First public commit
This commit is contained in:
commit
e05cd62e53
228 changed files with 17717 additions and 0 deletions
13
components/menu-styles.ts
Normal file
13
components/menu-styles.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
import clsx from "clsx";
|
||||
|
||||
export const styleMenuItem = ({
|
||||
active,
|
||||
selected,
|
||||
}: {
|
||||
active: boolean;
|
||||
selected: boolean;
|
||||
}) =>
|
||||
clsx("menu-item", {
|
||||
"font-medium": selected,
|
||||
"bg-blue-50": active,
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue