diff --git a/packages/flow-core/src/components/f-icon-button/f-icon-button.ts b/packages/flow-core/src/components/f-icon-button/f-icon-button.ts index 54d1767cf..4efbc7ae0 100644 --- a/packages/flow-core/src/components/f-icon-button/f-icon-button.ts +++ b/packages/flow-core/src/components/f-icon-button/f-icon-button.ts @@ -21,9 +21,9 @@ const variants = ["round", "curved", "block"] as const; const categories = ["fill", "outline", "transparent", "packed"] as const; const sizes = ["large", "medium", "small", "x-small"] as const; -export type FIconButtonVariant = typeof variants[number]; -export type FIconButtonType = typeof categories[number]; -export type FIconButtonSize = typeof sizes[number]; +export type FIconButtonVariant = (typeof variants)[number]; +export type FIconButtonType = (typeof categories)[number]; +export type FIconButtonSize = (typeof sizes)[number]; export type FIconButtonState = | "primary" | "danger"