From 1b15a7f55d66affadc56c04bdbd5370b0e683d32 Mon Sep 17 00:00:00 2001 From: Cooper Ransom Date: Tue, 5 Mar 2024 18:39:17 -0500 Subject: [PATCH] add cat pfp and fix others --- src/components/UserIcon.tsx | 10 +++------- src/components/form/IconPicker.tsx | 4 +--- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/src/components/UserIcon.tsx b/src/components/UserIcon.tsx index 1797c30f..f40f91ca 100644 --- a/src/components/UserIcon.tsx +++ b/src/components/UserIcon.tsx @@ -3,9 +3,7 @@ import { memo } from "react"; import { Icon, Icons } from "@/components/Icon"; export enum UserIcons { - // CAT = "cat", - // DESKTOP = "desktop", - // STORM = "storm", + CAT = "cat", WEED = "weed", USER_GROUP = "userGroup", COUCH = "couch", @@ -19,10 +17,8 @@ export interface UserIconProps { } const iconList: Record = { - // cat: ` `, - // desktop: ` `, - // storm: ` `, - weed: ``, + cat: ``, + weed: ``, userGroup: ``, couch: ``, mobile: ``, diff --git a/src/components/form/IconPicker.tsx b/src/components/form/IconPicker.tsx index 4d541bb6..7ede61d5 100644 --- a/src/components/form/IconPicker.tsx +++ b/src/components/form/IconPicker.tsx @@ -3,9 +3,7 @@ import classNames from "classnames"; import { UserIcon, UserIcons } from "../UserIcon"; const icons = [ - // UserIcons.CAT, - // UserIcons.DESKTOP, - // UserIcons.STORM, + UserIcons.CAT, UserIcons.WEED, UserIcons.USER_GROUP, UserIcons.COUCH,