import type { ReactNode } from 'react';

export interface IncludedGridProps {
  /** Five `IncludedItem`s (5 columns; 2 columns below 900px with the last one full width). */
  children: ReactNode;
}

/**
 * Five-column grid of small white tiles (`.kwac-included`) listing what is in
 * the box. Belongs on an `alt` band so the white tiles stand out.
 */
export function IncludedGrid({ children }: IncludedGridProps) {
  return <div className="kwac-included">{children}</div>;
}
