For the complete documentation index, see llms.txt. Markdown variants are available by appending .md to any URL or sending an Accept: text/markdown header. An agent skill is available at /.well-known/agent-skills/site-skill.md.
0
Sponsor

List Slide

An ordered or unordered list slide with optional fragment animations.

Agenda

  • Introduction
  • Core concepts
  • Live demo

Installation

$ pnpm dlx shadcn@latest add @slidecn/list-slide

Usage

import ListSlide from "@/components/slides/list-slide";
 
function MyPresentation() {
  return (
    <Deck>
      <ListSlide
        title="Next Steps"
        ordered
        animation="fade-up"
        items={[
          { text: "Review proposal", subtext: "Due Friday" },
          { text: "Schedule kickoff", subtext: "Next Monday" },
        ]}
      />
    </Deck>
  );
}

API Reference

ListSlide

PropTypeDefaultDescription
titlestring-Slide heading
itemsListItem[]requiredList items
orderedbooleanfalseUse ordered list
animatedbooleanfalseEnable fragment animations
animationFragmentAnimation-Fragment animation type
notesstring-Speaker notes

ListItem

FieldTypeDescription
textstringMain text
subtextstringSecondary text