Skip to content

Commit de049df

Browse files
fix(ButtonTwoLines): fix cyclical component imports
1 parent 4e26703 commit de049df

File tree

1 file changed

+2
-4
lines changed
  • src/components/Buttons/ButtonTwoLines

1 file changed

+2
-4
lines changed

src/components/Buttons/ButtonTwoLines/index.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
import type { IconType } from "react-icons/lib"
22
import { Icon, Stack, Text } from "@chakra-ui/react"
33

4-
import { Button, type ButtonProps } from "@/components/Buttons"
5-
import ButtonLink, {
6-
type ButtonLinkProps,
7-
} from "@/components/Buttons/ButtonLink"
4+
import Button, { type ButtonProps } from "../Button"
5+
import ButtonLink, { type ButtonLinkProps } from "../ButtonLink"
86

97
type CommonProps = {
108
icon: IconType | typeof Icon

0 commit comments

Comments
 (0)