Skip to content

Commit

Permalink
Switchup icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Weves committed Aug 31, 2023
1 parent b174be5 commit b897e78
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions web/src/components/icons/icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@ import {
FiChevronsDown,
FiChevronsUp,
FiEdit,
FiFile,
FiGlobe,
FiThumbsDown,
FiThumbsUp,
} from "react-icons/fi";
import { SiBookstack } from "react-icons/si";
import { FaFile, FaGlobe } from "react-icons/fa";
import Image from "next/image";
import jiraSVG from "../../../public/Jira.svg";
import confluenceSVG from "../../../public/Confluence.svg";
Expand Down Expand Up @@ -98,14 +99,14 @@ export const GlobeIcon = ({
size = 16,
className = defaultTailwindCSS,
}: IconProps) => {
return <FaGlobe size={size} className={className} />;
return <FiGlobe size={size} className={className} />;
};

export const FileIcon = ({
size = 16,
className = defaultTailwindCSS,
}: IconProps) => {
return <FaFile size={size} className={className} />;
return <FiFile size={size} className={className} />;
};

export const InfoIcon = ({
Expand Down

0 comments on commit b897e78

Please sign in to comment.