Skip to content

Commit

Permalink
docs: fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
shinokada committed Jul 8, 2024
1 parent 3236e52 commit af09739
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/forms/Checkbox.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
export let checked: boolean | undefined = undefined;
export let spacing: string = $$slots.default ? 'me-2' : '';
export let groupLabelClass: string = '';
export let groupInputClass: strixng = '';
export let groupInputClass: string = '';
// tinted if put in component having its own background
Expand Down
1 change: 1 addition & 0 deletions src/lib/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ export interface GroupTimelineType {
}

export interface ListGroupItemType {
name?: string;
current?: boolean;
disabled?: boolean;
href?: string;
Expand Down
2 changes: 1 addition & 1 deletion src/routes/docs/components/toast.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Usually, green, red, and orange are used to show success, danger, or warning ale
Item has been deleted.
</Toast>
<Toast color="orange">
<Toast color="red">
<svelte:fragment slot="icon">
<ExclamationCircleSolid class="w-5 h-5" />
<span class="sr-only">Warning icon</span>
Expand Down

0 comments on commit af09739

Please sign in to comment.