Uniformize folder structure (#693)

* Uniformize folder structure

* Fix icons

* Fix icons

* Fix tests

* Fix tests
This commit is contained in:
Charles Bochet
2023-07-16 14:29:28 -07:00
committed by GitHub
parent 900ec5572f
commit 6ced8434bd
462 changed files with 931 additions and 960 deletions

View File

@ -1,5 +1,5 @@
import { useScopedHotkeys } from '@/lib/hotkeys/hooks/useScopedHotkeys';
import { TableHotkeyScope } from '@/ui/tables/types/TableHotkeyScope';
import { useScopedHotkeys } from '@/ui/hotkey/hooks/useScopedHotkeys';
import { TableHotkeyScope } from '@/ui/table/types/TableHotkeyScope';
type OwnProps = {
onAddButtonClick?: () => void;

View File

@ -1,10 +1,9 @@
import { ReactNode } from 'react';
import styled from '@emotion/styled';
import { IconButton } from '@/ui/components/buttons/IconButton';
import { IconPlus } from '@/ui/icons/index';
import NavCollapseButton from '../navbar/NavCollapseButton';
import { IconButton } from '@/ui/button/components/IconButton';
import { IconPlus } from '@/ui/icon/index';
import NavCollapseButton from '@/ui/navbar/components/NavCollapseButton';
export const TOP_BAR_MIN_HEIGHT = 40;

View File

@ -1,6 +1,6 @@
import styled from '@emotion/styled';
import NavCollapseButton from '../navbar/NavCollapseButton';
import NavCollapseButton from '@/ui/navbar/components/NavCollapseButton';
const TitleAndCollapseContainer = styled.div`
align-items: center;