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

Commit

Permalink
FDS-290 f-accordion f-switch f-cion-button accessibility
Browse files Browse the repository at this point in the history
  • Loading branch information
vikas-cldcvr committed Feb 19, 2024
1 parent ef5ebc4 commit d289509
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit d289509

Please sign in to comment.