Skip to content
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.

Commit

Permalink
FLOW-969 prettify
Browse files Browse the repository at this point in the history
  • Loading branch information
mayankfulera committed Dec 18, 2023
1 parent 4003915 commit 6e0bb67
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/flow-core/src/components/f-countdown/f-countdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ const sizes = ["large", "medium", "small", "x-small"] as const;
const categories = ["fill", "outline"] as const;
const placements = ["left", "right", "bottom", "top", "none"] as const;

export type FCountdownStateProp = typeof states[number];
export type FCountdownCategoryProp = typeof categories[number];
export type FCountdownSizesProp = typeof sizes[number];
export type FCountdownLabelProp = typeof placements[number];
export type FCountdownStateProp = (typeof states)[number];
export type FCountdownCategoryProp = (typeof categories)[number];
export type FCountdownSizesProp = (typeof sizes)[number];
export type FCountdownLabelProp = (typeof placements)[number];
export type FCountdownDuration = number | string;

@flowElement("f-countdown")
Expand Down

0 comments on commit 6e0bb67

Please sign in to comment.