Skip to content

Commit

Permalink
Update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
insmac committed Oct 10, 2023
1 parent 83b25a7 commit f5fa241
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { useState } from "react"
import { Dialog as TableSchemaDialog } from "../../components/TableSchemaDialog/dialog"
import { useDispatch, useSelector } from "react-redux"
import { selectors, actions } from "../../store"
import { Table as TableIcon } from "styled-icons/remix-line"
import { Table as TableIcon } from "@styled-icons/remix-line"
import { SchemaFormValues } from "components/TableSchemaDialog/types"
import { formatTableSchemaQuery } from "../../utils/formatTableSchemaQuery"
import { useEditor } from "../../providers"
Expand Down
2 changes: 1 addition & 1 deletion packages/web-console/src/components/Logo/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useDispatch } from "react-redux"
import { actions } from "../../store"
import styled from "styled-components"
import { color } from "../../utils"
import { Information } from "styled-icons/remix-line"
import { Information } from "@styled-icons/remix-line"
import { BUTTON_ICON_SIZE } from "../../consts/index"
import { PrimaryToggleButton } from "../../components"

Expand Down
2 changes: 1 addition & 1 deletion packages/web-console/src/components/Page/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { PaneMenu } from "../../components/PaneMenu"
import { color } from "../../utils"
import { Sidebar } from "../../components/Sidebar"
import { Logo } from "../../components/Logo"
import { XLg } from "styled-icons/bootstrap"
import { XLg } from "@styled-icons/bootstrap"
import { useDispatch } from "react-redux"
import { actions } from "../../store"
import { Button } from "@questdb/react-components"
Expand Down
6 changes: 3 additions & 3 deletions packages/web-console/src/scenes/Console/Menu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ import {
Play,
Stop,
Question,
} from "styled-icons/remix-line"
import { Menu as _MenuIcon } from "styled-icons/remix-fill"
import { Slack } from "styled-icons/boxicons-logos"
} from "@styled-icons/remix-line"
import { Menu as _MenuIcon } from "@styled-icons/remix-fill"
import { Slack } from "@styled-icons/boxicons-logos"

import {
ErrorButton,
Expand Down
4 changes: 2 additions & 2 deletions packages/web-console/src/scenes/Console/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import { selectors, actions } from "../../store"
import { Tooltip } from "../../components/Tooltip"
import { Sidebar } from "../../components/Sidebar"
import { Navigation } from "../../components/Sidebar/navigation"
import { Database2, Grid, PieChart, Upload2 } from "styled-icons/remix-line"
import { ChevronDoubleLeft } from "styled-icons/bootstrap"
import { Database2, Grid, PieChart, Upload2 } from "@styled-icons/remix-line"
import { ChevronDoubleLeft } from "@styled-icons/bootstrap"
import { ViewMode } from "./types"
import { BUTTON_ICON_SIZE } from "../../consts/index"
import { PrimaryToggleButton } from "../../components"
Expand Down
4 changes: 2 additions & 2 deletions packages/web-console/src/scenes/Layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ import { useSelector } from "react-redux"
import { selectors } from "../../store"
import News from "../../scenes/News"
import { CreateTableDialog } from "../../components/CreateTableDialog"
import { Chat3, Command, Question } from "styled-icons/remix-line"
import { Slack } from "styled-icons/boxicons-logos"
import { Chat3, Command, Question } from "@styled-icons/remix-line"
import { Slack } from "@styled-icons/boxicons-logos"
import {
PrimaryToggleButton,
Text,
Expand Down
2 changes: 1 addition & 1 deletion packages/web-console/src/scenes/News/bell.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import styled, { css, keyframes } from "styled-components"
import { Notification2 } from "styled-icons/remix-line"
import { Notification2 } from "@styled-icons/remix-line"

const angle = "10deg"
const swingFrames = keyframes`
Expand Down

0 comments on commit f5fa241

Please sign in to comment.