Skip to content

Commit

Permalink
MAT-7578: Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmcphillips committed Sep 20, 2024
1 parent 982121b commit 50eec31
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/types/madie-components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,23 @@ declare module "@madie/madie-components" {
readonly lg: "lg";
readonly xl: "xl";
};
export type ButtonSize = typeof ButtonSizeDefs[keyof typeof ButtonSizeDefs];
export type ButtonSize = (typeof ButtonSizeDefs)[keyof typeof ButtonSizeDefs];

export const ButtonVariantDefs: {
readonly primary: "primary";
readonly secondary: "secondary";
readonly white: "white";
};
export type ButtonVariant =
typeof ButtonVariantDefs[keyof typeof ButtonVariantDefs];
(typeof ButtonVariantDefs)[keyof typeof ButtonVariantDefs];

export const ButtonShapeDefs: {
readonly normal: "normal";
readonly round: "round";
readonly circular: "circular";
};
export type ButtonShape =
typeof ButtonShapeDefs[keyof typeof ButtonShapeDefs];
(typeof ButtonShapeDefs)[keyof typeof ButtonShapeDefs];

export type IconType = (props: React.ComponentProps<"svg">) => JSX.Element;

Expand Down

0 comments on commit 50eec31

Please sign in to comment.