funkwhale/front/ui-docs/components/ui/alert.md

1.5 KiB

Alert

Prop Data type Required? Default Description
color blue | red | purple | green | yellow No secondary The color of the alert container

Alert colors

Funkwhale alerts support a range of pastel colors for visual appeal.

::: details Colors

  • Red
  • Blue
  • Purple
  • Green
  • Yellow

:::

Blue

<Alert color="blue">
  Blue alert
</Alert>
Blue alert

Red

<Alert color="red">
  Red alert
</Alert>
Red alert

Purple

<Alert color="purple">
  Purple alert
</Alert>
Purple alert

Green

<Alert color="green">
  Green alert
</Alert>
Green alert

Yellow

<Alert color="yellow">
  Yellow alert
</Alert>
Yellow alert

Alert actions

<Alert>
  Awesome artist

  <template #actions>
    <Button>Got it</Button>
  </template>
</Alert>
Awesome artist Got it