Skip to content

Commit

Permalink
chore: recipe:generate
Browse files Browse the repository at this point in the history
  • Loading branch information
junghyeonsu committed Dec 5, 2024
1 parent 8b4e4c1 commit 8b1a00c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
13 changes: 11 additions & 2 deletions packages/recipe/lib/progressCircle.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
interface ProgressCircleVariant {
/**
* @default neutral
*/
variant: "neutral" | "brand" | "white";
size: "small" | "medium";
indeterminate: boolean;
/**
* @default medium
*/
size: "small" | "medium";
/**
* @default false
*/
indeterminate: boolean;
}

type ProgressCircleVariantMap = {
Expand Down
6 changes: 5 additions & 1 deletion packages/recipe/lib/progressCircle.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ const progressCircleSlotNames = [
]
];

const defaultVariant = {};
const defaultVariant = {
"variant": "neutral",
"size": "medium",
"indeterminate": false
};

const compoundVariants = [];

Expand Down

0 comments on commit 8b1a00c

Please sign in to comment.