Skip to content

Commit 961cdf6

Browse files
fix: storybook build error (#8041)
1 parent e8bdc47 commit 961cdf6

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

packages/propel/src/calendar/root.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import * as React from "react";
44
import { DayPicker } from "react-day-picker";
5-
import { ChevronLeftIcon } from "@plane/propel/icons";
5+
import { ChevronLeftIcon } from "../icons";
66

77
import { cn } from "../utils";
88

packages/propel/src/collapsible/collapsible.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useState } from "react";
22
import type { Meta, StoryObj } from "@storybook/react-vite";
33
import { useArgs } from "storybook/preview-api";
4-
import { ChevronDownIcon } from "@plane/propel/icons";
4+
import { ChevronDownIcon } from "../icons";
55
import { Collapsible } from "./collapsible";
66

77
const meta = {

packages/propel/src/context-menu/context-menu.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { Meta, StoryObj } from "@storybook/react-vite";
22
import { Copy, Download, Edit, Share, Trash, Star, Archive } from "lucide-react";
3-
import { ChevronRightIcon } from "@plane/propel/icons";
3+
import { ChevronRightIcon } from "../icons";
44
import { ContextMenu } from "./context-menu";
55

66
// cannot use satisfies here because base-ui does not have portable types.

packages/propel/src/dialog/dialog.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useState } from "react";
22
import type { Meta, StoryObj } from "@storybook/react-vite";
33
import { useArgs } from "storybook/preview-api";
4-
import { CloseIcon } from "@plane/propel/icons";
4+
import { CloseIcon } from "../icons";
55
import { Dialog, EDialogWidth } from "./root";
66

77
const meta = {

packages/propel/src/emoji-icon-picker/lucide-icons.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ import {
151151
Search,
152152
User,
153153
} from "lucide-react";
154-
import { ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon } from "@plane/propel/icons";
154+
import { ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon } from "../icons";
155155

156156
export const LUCIDE_ICONS_LIST = [
157157
{ name: "Activity", element: Activity },

packages/propel/src/menu/menu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as React from "react";
22
import { Menu as BaseMenu } from "@base-ui-components/react/menu";
33
import { MoreHorizontal } from "lucide-react";
4-
import { ChevronDownIcon, ChevronRightIcon } from "@plane/propel/icons";
4+
import { ChevronDownIcon, ChevronRightIcon } from "../icons";
55
import { cn } from "../utils/classname";
66
import { TMenuProps, TSubMenuProps, TMenuItemProps } from "./types";
77

packages/propel/src/popover/popover.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useState } from "react";
22
import type { Meta, StoryObj } from "@storybook/react-vite";
33
import { useArgs } from "storybook/preview-api";
4-
import { CloseIcon } from "@plane/propel/icons";
4+
import { CloseIcon } from "../icons";
55
import { Popover } from "./root";
66

77
// cannot use satifies here because base-ui does not have portable types.

0 commit comments

Comments
 (0)