@@ -218,7 +217,7 @@ export function ToastStatic({ type, title, message, actionItems, theme = "light"
)}
>
diff --git a/packages/propel/src/toolbar/toolbar.stories.tsx b/packages/propel/src/toolbar/toolbar.stories.tsx
index 42ed52185a..d978885b7e 100644
--- a/packages/propel/src/toolbar/toolbar.stories.tsx
+++ b/packages/propel/src/toolbar/toolbar.stories.tsx
@@ -6,21 +6,23 @@
import type { Meta, StoryObj } from "@storybook/react-vite";
import {
- Bold,
- Italic,
- Underline,
- Strikethrough,
- Code,
- ListOrdered,
- Quote,
- AlignLeft,
- AlignCenter,
- AlignRight,
- Undo,
- Redo,
-} from "lucide-react";
-import { LinkIcon, GlobeIcon, LockIcon } from "../icons";
-import { ListLayoutIcon } from "../icons/layouts/list-icon";
+ AlignCenterOutline,
+ AlignLeftOutline,
+ AlignRightOutline,
+ BoldOutline,
+ CodeOutline,
+ GlobeOutline,
+ ItalicOutline,
+ LinkOutline,
+ ListOutline,
+ LockOutline,
+ NumberedListOutline,
+ QuoteOutline,
+ RedoOutline,
+ StrikethroughOutline,
+ UnderlineOutline,
+ UndoOutline,
+} from "@makeplane/propel/icons";
import { Toolbar } from "./toolbar";
const meta = {
@@ -45,28 +47,28 @@ export const Default: Story = {
-
-
+
+
-
-
-
-
+
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
-
-
+
+
@@ -81,19 +83,19 @@ export const WithActiveStates: Story = {
-
-
-
+
+
+
-
-
-
+
+
+
-
-
-
+
+
+
@@ -110,20 +112,20 @@ export const CommentToolbar: Story = {
{/* Access Specifier */}
-
-
+
+
-
-
-
+
+
+
-
-
+
+
Comment
diff --git a/packages/propel/src/tooltip/tooltip.stories.tsx b/packages/propel/src/tooltip/tooltip.stories.tsx
index 8560481c33..8bb9005e42 100644
--- a/packages/propel/src/tooltip/tooltip.stories.tsx
+++ b/packages/propel/src/tooltip/tooltip.stories.tsx
@@ -5,7 +5,7 @@
*/
import type { Meta, StoryObj } from "@storybook/react-vite";
-import { HelpCircle } from "lucide-react";
+import { HelpOutline } from "@makeplane/propel/icons";
import { Tooltip } from "./root";
const meta = {
@@ -72,7 +72,7 @@ export const WithIcon: Story = {
tooltipContent: "Click here for help",
children: (
),
},
@@ -295,7 +295,7 @@ export const InFormField: Story = {
tooltipContent="Enter a valid email address that you have access to. We'll send a verification link."
position="right"
>
-
+
;
export const Default: Story = {
args: {
children: [
-
} />,
+
} />,
} />,
} />,
+
} />,
} />,
],
},
@@ -65,7 +65,7 @@ export const WithLoading: Story = {
export const WithCustomComponent: Story = {
args: {
children: [
-
} />,
+
} />,
} />],
+ children: [
} />],
},
};
@@ -90,11 +90,13 @@ export const WithIcons: Story = {
children: [
} />}
+ component={
} />}
/>,
} />}
+ component={
+
} />
+ }
isLast
/>,
],
diff --git a/packages/ui/src/breadcrumbs/breadcrumbs.tsx b/packages/ui/src/breadcrumbs/breadcrumbs.tsx
index 984bb168a8..5ef2b50d11 100644
--- a/packages/ui/src/breadcrumbs/breadcrumbs.tsx
+++ b/packages/ui/src/breadcrumbs/breadcrumbs.tsx
@@ -5,7 +5,7 @@
*/
import * as React from "react";
-import { ChevronRightIcon } from "@plane/propel/icons";
+import { ChevronRightOutline } from "@makeplane/propel/icons";
import { Tooltip } from "@plane/propel/tooltip";
import { cn } from "../utils";
@@ -72,7 +72,7 @@ function Breadcrumbs({ className, children, onBack, isLoading = false }: Breadcr
...
)}
-
+
{isLoading ? (
@@ -154,7 +154,7 @@ function BreadcrumbSeparator(props: BreadcrumbSeparatorProps) {
containerClassName
)}
>
-
+
);
diff --git a/packages/ui/src/collapsible/collapsible-button.tsx b/packages/ui/src/collapsible/collapsible-button.tsx
index c2bb54c86e..b2b1c4404b 100644
--- a/packages/ui/src/collapsible/collapsible-button.tsx
+++ b/packages/ui/src/collapsible/collapsible-button.tsx
@@ -6,7 +6,7 @@
import React from "react";
import type { ISvgIcons } from "@plane/propel/icons";
-import { DropdownIcon } from "@plane/propel/icons";
+import { DropdownOutline } from "@makeplane/propel/icons";
import { cn } from "../utils";
type Props = {
@@ -29,7 +29,7 @@ export function CollapsibleButton(props: Props) {
actionItemElement,
className = "",
titleClassName = "",
- ChevronIcon = DropdownIcon,
+ ChevronIcon = DropdownOutline,
} = props;
return (
diff --git a/packages/ui/src/drag-handle.tsx b/packages/ui/src/drag-handle.tsx
index 58e1e43d48..dc67d087b3 100644
--- a/packages/ui/src/drag-handle.tsx
+++ b/packages/ui/src/drag-handle.tsx
@@ -4,7 +4,7 @@
* See the LICENSE file for details.
*/
-import { MoreVertical } from "lucide-react";
+import { MoreVerticalOutline } from "@makeplane/propel/icons";
import React, { forwardRef } from "react";
// helpers
import { cn } from "./utils";
@@ -34,8 +34,8 @@ export const DragHandle = forwardRef(function DragHandle(
}}
ref={ref}
>
-
-
+
+
);
});
diff --git a/packages/ui/src/dropdown/common/input-search.tsx b/packages/ui/src/dropdown/common/input-search.tsx
index 9b96a23c2e..c52602473d 100644
--- a/packages/ui/src/dropdown/common/input-search.tsx
+++ b/packages/ui/src/dropdown/common/input-search.tsx
@@ -6,7 +6,7 @@
import { Combobox } from "@headlessui/react";
import React, { useEffect, useRef } from "react";
-import { SearchIcon } from "@plane/propel/icons";
+import { SearchOutline } from "@makeplane/propel/icons";
// helpers
import { cn } from "../../utils";
@@ -48,7 +48,7 @@ export function InputSearch(props: IInputSearch) {
inputContainerClassName
)}
>
- {inputIcon ? <>{inputIcon}> : }
+ {inputIcon ? <>{inputIcon}> : }
{option.value}
- {selected && }
+ {selected && }
>
)}
>
diff --git a/packages/ui/src/dropdowns/context-menu/item.tsx b/packages/ui/src/dropdowns/context-menu/item.tsx
index 27031f9f78..2c50fd59e2 100644
--- a/packages/ui/src/dropdowns/context-menu/item.tsx
+++ b/packages/ui/src/dropdowns/context-menu/item.tsx
@@ -6,7 +6,7 @@
import React, { useState, useRef, useContext } from "react";
import { usePopper } from "react-popper";
-import { ChevronRightIcon } from "@plane/propel/icons";
+import { ChevronRightOutline } from "@makeplane/propel/icons";
// helpers
import { cn } from "../../utils";
// types
@@ -184,7 +184,7 @@ export function ContextMenuItem(props: ContextMenuItemProps) {
)}
- {hasNestedItems &&
}
+ {hasNestedItems &&
}
>
)}
diff --git a/packages/ui/src/dropdowns/custom-menu.tsx b/packages/ui/src/dropdowns/custom-menu.tsx
index ad980342c0..7b202a3c74 100644
--- a/packages/ui/src/dropdowns/custom-menu.tsx
+++ b/packages/ui/src/dropdowns/custom-menu.tsx
@@ -5,12 +5,11 @@
*/
import { Menu } from "@headlessui/react";
-import { MoreHorizontal } from "lucide-react";
+import { ChevronDownOutline, ChevronRightOutline, MoreHorizontalOutline } from "@makeplane/propel/icons";
import * as React from "react";
import ReactDOM from "react-dom";
import { usePopper } from "react-popper";
import { useOutsideClickDetector } from "@plane/hooks";
-import { ChevronDownIcon, ChevronRightIcon } from "@plane/propel/icons";
// plane helpers
// helpers
import { useDropdownKeyDown } from "../hooks/use-dropdown-key-down";
@@ -275,7 +274,7 @@ function CustomMenu(props: ICustomMenuDropdownProps) {
tabIndex={customButtonTabIndex}
aria-label={ariaLabel}
>
-
+
) : (
@@ -294,7 +293,7 @@ function CustomMenu(props: ICustomMenuDropdownProps) {
aria-label={ariaLabel}
>
{label}
- {!noChevron &&
}
+ {!noChevron &&
}
)}
@@ -420,7 +419,7 @@ function SubMenu(props: ICustomSubMenuProps) {
disabled={disabled}
>
{trigger}
-
+
)}
@@ -513,7 +512,7 @@ function SubMenuTrigger(props: ICustomSubMenuTriggerProps) {
)}
>
{children}
-
+
)}
diff --git a/packages/ui/src/dropdowns/custom-search-select.tsx b/packages/ui/src/dropdowns/custom-search-select.tsx
index dd9577d757..9863ce08a2 100644
--- a/packages/ui/src/dropdowns/custom-search-select.tsx
+++ b/packages/ui/src/dropdowns/custom-search-select.tsx
@@ -5,12 +5,11 @@
*/
import { Combobox } from "@headlessui/react";
-import { Info } from "lucide-react";
+import { ChevronDownOutline, InfoOutline, SearchOutline, TickOutline } from "@makeplane/propel/icons";
import React, { useRef, useState } from "react";
import { createPortal } from "react-dom";
import { usePopper } from "react-popper";
import { useOutsideClickDetector } from "@plane/hooks";
-import { CheckIcon, SearchIcon, ChevronDownIcon } from "@plane/propel/icons";
// plane imports
// local imports
import { Tooltip } from "@plane/propel/tooltip";
@@ -136,7 +135,7 @@ export function CustomSearchSelect(props: ICustomSearchSelectProps) {
>
{label}
{!noChevron && !disabled && (
-
)}
@@ -154,7 +153,7 @@ export function CustomSearchSelect(props: ICustomSearchSelectProps) {
{...attributes.popper}
>