Skip to content

Commit 5976eb4

Browse files
authored
Merge pull request #14854 from TylerAPfledderer/refactor/remove-tailwind-folder
[ShadCN]: Move files from tailwind folder
2 parents 25057bd + 8a3d367 commit 5976eb4

39 files changed

+64
-323
lines changed

src/components/BaseStories/Accordion.stories.tsx

Lines changed: 0 additions & 64 deletions
This file was deleted.

src/components/BaseStories/Checkbox.stories.tsx

Lines changed: 0 additions & 68 deletions
This file was deleted.

src/components/BaseStories/Radio.stories.tsx

Lines changed: 0 additions & 60 deletions
This file was deleted.

src/components/BaseStories/Switch.stories.tsx

Lines changed: 0 additions & 37 deletions
This file was deleted.

src/components/DataTable/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {
1414
TableHeader,
1515
TableProps,
1616
TableRow,
17-
} from "@/components/ui/Table"
17+
} from "@/components/ui/table"
1818

1919
import { trackCustomEvent } from "@/lib/utils/matomo"
2020

src/components/ExpandableCard.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,13 @@ import { Flex, HStack, VStack } from "@/components/ui/flex"
55

66
import { trackCustomEvent } from "@/lib/utils/matomo"
77

8+
import type { IconBaseType } from "./icons/icon-base"
89
import {
910
Accordion,
1011
AccordionContent,
1112
AccordionItem,
1213
AccordionTrigger,
13-
} from "../../tailwind/ui/accordion"
14-
15-
import type { IconBaseType } from "./icons/icon-base"
14+
} from "./ui/accordion"
1615

1716
export type ExpandableCardProps = {
1817
children?: ReactNode

src/components/FindWalletProductTable/hooks/useWalletColumns.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { Wallet } from "@/lib/types"
77
import type { TableMeta } from "@/components/DataTable"
88
import WalletInfo from "@/components/FindWalletProductTable/WalletInfo"
99
import { Button } from "@/components/ui/buttons/Button"
10-
import { TableCell } from "@/components/ui/Table"
10+
import { TableCell } from "@/components/ui/table"
1111

1212
import { trackCustomEvent } from "@/lib/utils/matomo"
1313

src/components/Layer2NetworksTable/NetworksWalletSelectInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { useState } from "react"
22

33
import { FilterInputState } from "@/lib/types"
44

5-
import { Input } from "@/components/ui/input"
5+
import Input from "@/components/ui/input"
66
import {
77
Select,
88
SelectContent,

src/components/Layer2NetworksTable/hooks/useNetworkColumns.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import NetworkMaturityTooltip from "@/components/Layer2NetworksTable/NetworkMatu
1212
import InlineLink from "@/components/Link"
1313
import Tooltip from "@/components/Tooltip"
1414
import { Button } from "@/components/ui/buttons/Button"
15-
import { TableCell, TableHead } from "@/components/ui/Table"
15+
import { TableCell, TableHead } from "@/components/ui/table"
1616

1717
import { cn } from "@/lib/utils/cn"
1818
import { trackCustomEvent } from "@/lib/utils/matomo"

src/components/MatomoOptOut.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { useEffect, useState } from "react"
22

33
import { MATOMO_LS_KEY } from "@/lib/utils/matomo"
44

5-
import Checkbox from "../../tailwind/ui/Checkbox"
5+
import Checkbox from "./ui/checkbox"
66

77
const MatomoOptOut = () => {
88
const [loading, setLoading] = useState<boolean>(true)

0 commit comments

Comments
 (0)