Skip to content

Commit

Permalink
Add stop variant to button variant type union
Browse files Browse the repository at this point in the history
  • Loading branch information
freddyaboulton committed Oct 14, 2022
1 parent 568a4a1 commit fe0a754
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/packages/button/src/Button.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
export let style: Styles = {};
export let elem_id: string = "";
export let visible: boolean = true;
export let variant: "primary" | "secondary" = "secondary";
export let variant: "primary" | "secondary" | "stop" = "secondary";
export let size: "sm" | "lg" = "lg";
$: ({ classes } = get_styles(style, ["full_width"]));
Expand Down

0 comments on commit fe0a754

Please sign in to comment.