Interface Props<TSchema>

Props for a Card component.

interface Props<TSchema> {
    items: Item<TSchema>[];
}

Type Parameters

  • TSchema extends z.ZodSchema

    Entity schema used to render the card.

Hierarchy

  • Schema<TSchema>
  • WithTheme<"root" | "label">
    • Props

Properties

Properties

items: Item<TSchema>[]

Items to render in the card using specified schema.