[WEB-4727] feat: propel cards (#7630)

* feat: add card component to propel package and update tooltip imports

* refactor: remove @plane/ui dependency and update tooltip imports to use local card component

* fix: lint

* refactor: update import from @plane/ui to @plane/utils in command component

* refactor: extend CardProps interface to include HTML attributes for better flexibility
This commit is contained in:
Jayash Tripathy 2025-08-26 02:14:24 +05:30 committed by GitHub
parent c2464939fc
commit 8801ab0081
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 84 additions and 8 deletions

View file

@ -10,7 +10,7 @@ import {
TCardVariant,
} from "./helper";
export interface CardProps {
export interface CardProps extends React.HTMLAttributes<HTMLDivElement> {
variant?: TCardVariant;
spacing?: TCardSpacing;
direction?: TCardDirection;