Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: remove remix icon
  • Loading branch information
G3root committed Aug 9, 2024
commit dbb56a3deaf0eb2419bb2d77b9e3a3a499443d38
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { Icon } from "@/components/ui/icon";
import { withServerComponentSession } from "@/server/auth";
import { db } from "@/server/db";
import { getPresignedGetUrl } from "@/server/file-uploads";
import { RiArrowLeftSLine } from "@remixicon/react";
import Link from "next/link";
import { notFound } from "next/navigation";
import { Fragment } from "react";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import FileIcon from "@/components/common/file-icon";
import { Card } from "@/components/ui/card";
import { Icon } from "@/components/ui/icon";
import { getPresignedGetUrl } from "@/server/file-uploads";
import { RiMore2Fill } from "@remixicon/react";
import { useRouter } from "next/navigation";

import {
Expand Down Expand Up @@ -78,7 +77,10 @@ const DocumentsTable = ({ documents, companyPublicId }: DocumentTableProps) => {
<div className="flex items-center gap-4">
<DropdownMenu>
<DropdownMenuTrigger>
<RiMore2Fill className="cursor-pointer text-muted-foreground hover:text-primary/80" />
<Icon
name="more-2-fill"
className="cursor-pointer text-muted-foreground hover:text-primary/80"
/>
</DropdownMenuTrigger>
<DropdownMenuContent>
<DropdownMenuLabel>Options</DropdownMenuLabel>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,10 @@ import { api } from "@/trpc/react";

import { Icon } from "@/components/ui/icon";
import type { Bucket, DataRoom } from "@prisma/client";
import { RiShareLine } from "@remixicon/react";
import { useDebounceCallback } from "usehooks-ts";

import { pushModal } from "@/components/modals";
import {
RiFolder3Fill as FolderIcon,
RiAddFill,
RiUploadCloudLine,
} from "@remixicon/react";

import Link from "next/link";
import DataRoomUploader from "./data-room-uploader";

Expand Down Expand Up @@ -51,7 +46,8 @@ const DataRoomFiles = ({
<form>
<div className="gap-y-3">
<div className="flex w-full font-medium">
<FolderIcon
<Icon
name="folder-3-fill"
className="mr-3 h-6 w-6 text-primary/60"
aria-hidden="true"
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { Button } from "@/components/ui/button";
import { Icon } from "@/components/ui/icon";
import { getServerComponentAuthSession } from "@/server/auth";
import { db } from "@/server/db";
import { RiAddFill, RiFolderCheckFill } from "@remixicon/react";
import { Fragment } from "react";
import DataRoomPopover from "./components/data-room-popover";
import Folders from "./components/dataroom-folders";
Expand Down
4 changes: 2 additions & 2 deletions src/app/(documents)/data-rooms/[publicId]/[bucketId]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { Icon } from "@/components/ui/icon";
import { type JWTVerifyResult, decode } from "@/lib/jwt";
import { db } from "@/server/db";
import { getPresignedGetUrl } from "@/server/file-uploads";
import { RiFolder3Fill as FolderIcon } from "@remixicon/react";
import Link from "next/link";
import { notFound } from "next/navigation";

Expand Down Expand Up @@ -98,7 +97,8 @@ const DataRoomPage = async ({
}}
title={
<div className="flex">
<FolderIcon
<Icon
name="folder-3-fill"
className="mr-3 mt-1 h-6 w-6 text-primary/60"
aria-hidden="true"
/>
Expand Down