Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/propel/src/calendar/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

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

Expand Down
2 changes: 1 addition & 1 deletion packages/propel/src/collapsible/collapsible.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useState } from "react";
import type { Meta, StoryObj } from "@storybook/react-vite";
import { useArgs } from "storybook/preview-api";
import { ChevronDownIcon } from "@plane/propel/icons";
import { ChevronDownIcon } from "../icons";
import { Collapsible } from "./collapsible";

const meta = {
Expand Down
2 changes: 1 addition & 1 deletion packages/propel/src/context-menu/context-menu.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Meta, StoryObj } from "@storybook/react-vite";
import { Copy, Download, Edit, Share, Trash, Star, Archive } from "lucide-react";
import { ChevronRightIcon } from "@plane/propel/icons";
import { ChevronRightIcon } from "../icons";
import { ContextMenu } from "./context-menu";

// cannot use satisfies here because base-ui does not have portable types.
Expand Down
2 changes: 1 addition & 1 deletion packages/propel/src/dialog/dialog.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useState } from "react";
import type { Meta, StoryObj } from "@storybook/react-vite";
import { useArgs } from "storybook/preview-api";
import { CloseIcon } from "@plane/propel/icons";
import { CloseIcon } from "../icons";
import { Dialog, EDialogWidth } from "./root";

const meta = {
Expand Down
2 changes: 1 addition & 1 deletion packages/propel/src/emoji-icon-picker/lucide-icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ import {
Search,
User,
} from "lucide-react";
import { ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon } from "@plane/propel/icons";
import { ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon } from "../icons";

export const LUCIDE_ICONS_LIST = [
{ name: "Activity", element: Activity },
Expand Down
2 changes: 1 addition & 1 deletion packages/propel/src/menu/menu.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from "react";
import { Menu as BaseMenu } from "@base-ui-components/react/menu";
import { MoreHorizontal } from "lucide-react";
import { ChevronDownIcon, ChevronRightIcon } from "@plane/propel/icons";
import { ChevronDownIcon, ChevronRightIcon } from "../icons";
import { cn } from "../utils/classname";
import { TMenuProps, TSubMenuProps, TMenuItemProps } from "./types";

Expand Down
2 changes: 1 addition & 1 deletion packages/propel/src/popover/popover.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useState } from "react";
import type { Meta, StoryObj } from "@storybook/react-vite";
import { useArgs } from "storybook/preview-api";
import { CloseIcon } from "@plane/propel/icons";
import { CloseIcon } from "../icons";
import { Popover } from "./root";

// cannot use satifies here because base-ui does not have portable types.
Expand Down
Loading