Size
Rounded
Elevation
Background
Navigation
Contextual
Static (no onclick)
train
TGV (tone)
Paris β€” Lyon
airplanemode_active
Concorde (highlight)
Paris β€” New York
rocket
Ariane (accent)
Kourou β€” Mir space station


Svelte
<ListItem
    label="TGV"
    leading={icon_train}
    palette="tone"
    rounded
    active={active === "tgv"}
    onclick={() => active = "tgv"}
>
    Paris β€” Lyon
</ListItem>
<ListItem
    label="Minitel"
    leading={icon_terminal}
    palette="highlight"
    rounded
    active={active === "minitel"}
    onclick={() => active = "minitel"}
>
    3615 COGIP
</ListItem>


PropTypeDefault
size"sm" | "md" | "lg""md"
palette"tone" | "accent" | "ghost" | "neutral" | "error" | "warning" | "success" | "info""tone"
elevation"none" | "subtle" | "hard""none"
roundedbooleanfalse
activebooleanfalse
labelstringβ€”
leadingSnippetβ€”
trailingSnippetβ€”
childrenSnippetβ€”
onclick() => voidβ€”
Prop size
Type "sm" | "md" | "lg"
Default "md"
Prop palette
Type "tone" | "accent" | "ghost" | "neutral" | "error" | "warning" | "success" | "info"
Default "tone"
Prop elevation
Type "none" | "subtle" | "hard"
Default "none"
Prop rounded
Type boolean
Default false
Prop active
Type boolean
Default false
Prop label
Type string
Default β€”
Prop leading
Type Snippet
Default β€”
Prop trailing
Type Snippet
Default β€”
Prop children
Type Snippet
Default β€”
Prop onclick
Type () => void
Default β€”