Skip to content

Commit

Permalink
fix: update mdi-react imports
Browse files Browse the repository at this point in the history
  • Loading branch information
captainsafia authored Oct 20, 2021
1 parent 21c6a8a commit 0e066a2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
4 changes: 3 additions & 1 deletion components/download-buttons.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
import React from "react";
import { Button, Buttons } from "@components/button";
import { Type } from "@components/typography";
import { WindowsIcon, LinuxIcon, AppleIcon } from "mdi-react";
import WindowsIcon from "mdi-react/MicrosoftWindowsIcon";
import LinuxIcon from "mdi-react/LinuxIcon";
import AppleIcon from "mdi-react/AppleIcon";
import styled, { css } from "styled-components";
export const StyledFeaturette = styled.div``;
export const DownloadFeaturette = ({ platform, assetUrl }: OSProps) => {
Expand Down
12 changes: 5 additions & 7 deletions components/header/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@ import React from "react";
import { StyledHeader } from "@components/header/styled";
import { StyledHero } from "@components/hero/styled";
import Pattern from "@components/hero/pattern";
import {
DiscordIcon,
GithubCircleIcon,
TwitterCircleIcon,
MenuIcon,
CloseIcon
} from "mdi-react";
import DiscordIcon from "mdi-react/DiscordIcon";
import GithubCircleIcon from "mdi-react/GithubIcon";
import TwitterCircleIcon from "mdi-react/TwitterIcon";
import MenuIcon from "mdi-react/MenuIcon";
import CloseIcon from "mdi-react/CloseIcon";
import Link from "next/link";

const leftNav = {
Expand Down
3 changes: 2 additions & 1 deletion pages/about.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// @flow
import * as React from "react";
import { GithubCircleIcon, WebIcon } from "mdi-react";
import GithubCircleIcon from "mdi-react/GithubIcon";
import WebIcon from "mdi-react/WebIcon";
const NTERACT_MEMBERS = require("../generated/nteract-members.json");

import Layout from "@components/layout";
Expand Down

0 comments on commit 0e066a2

Please sign in to comment.