/components/list/subtitle

import { list, listItem } from "@hedia/hexui/components/list";

export default function () {
  return list(
    listItem({
      title: "List Item 1",
      subtitle: "Subtitle for item 1",
    }),
    listItem({
      title: "List Item 2",
      subtitle: "Subtitle for item 2",
    }),
    listItem({
      title: "List Item 3",
      subtitle: "Subtitle for item 3",
    }),
  );
}