theme: SoftUI({
  blacklisted: {
    title: String,
    subtitle: String,
    description: String,
    button: {
      enabled: Boolean,
      text: String,
      link: String,
    },
  },
});

Example Usage

theme: SoftUI({
  blacklisted: {
    title: "Blacklisted",
    subtitle: "Access denied",
    description:
      "Unfortunately it seems that you have been blacklisted from the dashboard.",
    button: {
      enabled: false,
      text: "Return",
      link: "https://google.com",
    },
  },
});

Props

title
string
required
The title of the blacklisted page
subtitle
string
required
The subtitle of the blacklisted page
description
string
required
The description of the blacklisted page
button
Object
required